Skip to content

Commit

Permalink
configurable static url
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobi-De committed Nov 21, 2023
1 parent 39796bc commit c7aee0e
Show file tree
Hide file tree
Showing 27 changed files with 2 additions and 9,992 deletions.
3 changes: 2 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
from django.core.management import execute_from_command_line

from coltrane import initialize
from os import getenv


wsgi = initialize()
wsgi = initialize(**{"STATIC_URL": getenv("STATIC_URL", "static/")})

if __name__ == "__main__":
execute_from_command_line()

0 comments on commit c7aee0e

Please sign in to comment.