sudacode b7aa64935f
All checks were successful
Build Docker Image / build (push) Successful in 13m47s
fix logging
2025-02-15 00:35:41 -08:00

10 lines
194 B
Python
Executable File

#!/usr/bin/env python3
from app import create_app
from app.config import Config
app = create_app()
if __name__ == "__main__":
app.run(host=Config.LISTEN_ADDRESS, port=Config.LISTEN_PORT)