Browse Source

Move main module in tasks.py to

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

+ 1 - 1
tasks.py

@@ -13,7 +13,7 @@ def run(c, port=8080, host="127.0.0.1"):
     """Run a debug server locally"""
     c.run(
         f"poetry run python -m flask run -p {port} -h {host}",
-        env={"FLASK_APP": "lc/main.py"},
+        env={"FLASK_APP": "lament-configuration.py"},
     )