склади и инструмент готовы

This commit is contained in:
2025-12-07 19:36:28 +03:00
parent 54bf21d52d
commit 65a3bc1671
65 changed files with 3485 additions and 115 deletions
+5
View File
@@ -9,3 +9,8 @@ DB_PORT = os.environ.get("DB_PORT")
DB_NAME = os.environ.get("DB_NAME")
DB_USER = os.environ.get("DB_USER")
DB_PASS = os.environ.get("DB_PASS")
# Gunicorn
RELOAD_DIR = os.path.dirname(os.path.abspath(__file__)).replace("config", "")
TEMPLATES_DIR = os.path.join(RELOAD_DIR, "api/templates")
APP_SECRET = os.environ.get("APP_SECRET")
Binary file not shown.
+1 -1
View File
@@ -32,7 +32,7 @@ propagate=0
[formatter_formatter]
class=colorlog.ColoredFormatter
format=%(log_color)s%(asctime)s: [%(levelname)s] %(message)s [%(filename)s:%(lineno)d '%(funcName)s']
format=%(log_color)s%(asctime)s [%(name)s]: [%(levelname)s] %(message)s [%(filename)s:%(lineno)d '%(funcName)s']
datefmt=%Y-%m-%d %H:%M:%S
[handler_logconsole]