postgres version

This commit is contained in:
Your Name
2025-10-22 21:57:07 +03:00
commit 1aff196155
31 changed files with 10962 additions and 0 deletions

6
server/start_server.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
# Use FLASK_DEBUG=True if needed
PORT=$(python3 -c "from config import CONFIG; print(CONFIG.get('PORT'))")
FLASK_APP=$(dirname $(readlink -f $0))/standalone.py python3 -m flask run --host 0.0.0.0 --with-threads --port $PORT