fix py start
All checks were successful
Meshtastic Map - See local Meshtastic Nodes / deploy (push) Successful in 1s

This commit is contained in:
david 2025-04-13 17:23:43 -07:00
parent 92b5a0894d
commit 0651adf912
2 changed files with 2 additions and 2 deletions

View File

@ -26,5 +26,5 @@ jobs:
- name: Start server in screen session
run: |
cd ~/apps/mesh-map
setsid screen -dmS mesh_map_server bash -c 'python3 -m http.server 8083 > server.log 2>&1'
setsid screen -dmS mesh_map_server bash -c 'python3 app.py > server.log 2>&1'
echo "Server started in detached screen session"

2
app.py
View File

@ -33,4 +33,4 @@ def nodes():
})
if __name__ == "__main__":
app.run(host='0.0.0.0', port=5000)
app.run(host='0.0.0.0', port=8083)