|
@@ -50,6 +50,6 @@ def tc(c):
|
|
|
|
|
|
|
|
|
|
@task
|
|
@task
|
|
-def uwsgi(c, port=9898):
|
|
|
|
|
|
+def uwsgi(c, sock="lc.sock"):
|
|
"""Run a uwsgi server"""
|
|
"""Run a uwsgi server"""
|
|
- c.run(f"poetry run uwsgi --socket {port} --module lament-configuration:app --processes 4 --threads 2")
|
|
|
|
|
|
+ c.run(f"poetry run uwsgi --socket {sock} --module lament-configuration:app --processes 4 --threads 2")
|