fix: use python3 for Render runtime compatibility

This commit is contained in:
2026-07-13 13:31:35 +05:30
parent 63540297aa
commit f71b498a66
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
web: python -m uvicorn main:app --host 0.0.0.0 --port $PORT web: python3 -m uvicorn main:app --host 0.0.0.0 --port $PORT
+1 -1
View File
@@ -3,7 +3,7 @@ services:
name: contec-monitor-api name: contec-monitor-api
runtime: python runtime: python
buildCommand: pip install -r requirements.txt buildCommand: pip install -r requirements.txt
startCommand: python -m uvicorn main:app --host 0.0.0.0 --port $PORT startCommand: python3 -m uvicorn main:app --host 0.0.0.0 --port $PORT
envVars: envVars:
- key: PORT - key: PORT
value: 10000 value: 10000