@@ -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)