Feat: User Relationships and Session Members.

This commit is contained in:
2026-02-28 19:53:50 +00:00
parent c7db290aaf
commit e8e9a02e7b
73 changed files with 3818 additions and 571 deletions

2
app.py
View File

@@ -49,7 +49,7 @@ app.app_config = app_config
# app.config["config"] = app_config()
# logging
handler = RotatingFileHandler('app.log', maxBytes=10000, backupCount=3)
handler = RotatingFileHandler('app.log', maxBytes=10_000_000, backupCount=16)
handler.setLevel(logging.DEBUG)
app.logger.addHandler(handler)