Browse Source

Fix uwsgi invocation

Getty Ritter 4 years ago
parent
commit
bd2095f310
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tasks.py

+ 1 - 1
tasks.py

@@ -52,4 +52,4 @@ def tc(c):
 @task
 def uwsgi(c, port=9898):
     """Run a uwsgi server"""
-    c.run(f"poetry run uwsgi --socket {port} --wsgi-file lament-configuration.py --processes 4 --threads 2")
+    c.run(f"poetry run uwsgi --socket {port} --module lament-configuration:app --processes 4 --threads 2")