This commit is contained in:
Daoud Clarke 2023-10-28 16:45:14 +01:00
parent 03fd7e8d9d
commit 372d780da7
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from django.core.management import call_command
def run():
django.setup()
call_command("collectstatic", "-c")
call_command("collectstatic", "--clear", "--noinput")
call_command("migrate")
uvicorn.run("mwmbl.asgi:application", host="0.0.0.0", port=5000)