Files
autoban/run.py
2026-01-01 02:13:34 +01:00

9 lines
264 B
Python

from app import app, start_background_threads
from waitress import serve
# Uruchomienie wątków tła natychmiast po starcie aplikacji
start_background_threads()
# Uruchomienie aplikacji przy użyciu Waitress na porcie 5002
serve(app, listen='*:5002', ident="")