This commit is contained in:
2025-10-05 21:56:33 +02:00
parent d30aa7cfea
commit fe2df1514c
77 changed files with 82 additions and 12002 deletions

View File

@@ -1,17 +0,0 @@
#!/usr/bin/env python3
import os
import sys
import subprocess
# Change to the server directory
server_dir = os.path.join(os.path.dirname(__file__), 'src', 'server')
os.chdir(server_dir)
# Add parent directory to Python path
sys.path.insert(0, '..')
# Run the app
if __name__ == '__main__':
# Use subprocess to run the app properly
subprocess.run([sys.executable, 'app.py'], cwd=server_dir)