Add Flask server startup scripts: introduce start_server.bat for Windows and start-flask-server.py for enhanced server management. Update run.py to include logging and threaded request handling. Add test_server.py for server accessibility testing.

This commit is contained in:
2025-04-25 17:09:09 +01:00
parent 9f8eba6736
commit 73501e7cda
4 changed files with 161 additions and 2 deletions

5
start_server.bat Normal file
View File

@@ -0,0 +1,5 @@
@echo off
cd website
echo Starting Flask server on http://127.0.0.1:5000
python run.py
pause