fix logging
All checks were successful
Build Docker Image / build (push) Successful in 13m47s

This commit is contained in:
2025-02-15 00:35:41 -08:00
parent b7e89d9c22
commit b7aa64935f
8 changed files with 59 additions and 47 deletions

3
run.py
View File

@@ -1,11 +1,8 @@
#!/usr/bin/env python3
import logging
from app import create_app
from app.config import Config
logging.basicConfig(level=getattr(logging, Config.LOGLEVEL))
app = create_app()
if __name__ == "__main__":