Update hypercorn invocations for app.py

This commit is contained in:
2024-10-23 17:27:47 -05:00
parent 945256e682
commit f0b1e88305
2 changed files with 2 additions and 2 deletions

View File

@@ -4,6 +4,6 @@
"builder": "NIXPACKS"
},
"deploy": {
"startCommand": "hypercorn linkpulse.main:app --bind \"[::]:$PORT\""
"startCommand": "hypercorn linkpulse.app:app --bind \"[::]:$PORT\""
}
}

View File

@@ -1,3 +1,3 @@
#!/usr/bin/env bash
poetry run hypercorn linkpulse.main:app --reload
poetry run hypercorn linkpulse.app:app --reload