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

12
server/standalone.py Normal file
View File

@@ -0,0 +1,12 @@
import threading
import werkzeug.serving
from __init__ import app
import submit_loop
if not werkzeug.serving.is_running_from_reloader():
submit_thread = threading.Thread(target=submit_loop.run_loop)
submit_thread.start()