Merge pull request #488 from stlalpha/feature/automated-backups

Enhancement: Add automated configuration backups
This commit is contained in:
SergeantPanda 2025-12-15 16:17:33 -06:00 committed by GitHub
commit 4878e92f44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 3280 additions and 0 deletions

View file

@ -226,6 +226,13 @@ CELERY_BEAT_SCHEDULE = {
MEDIA_ROOT = BASE_DIR / "media"
MEDIA_URL = "/media/"
# Backup settings
BACKUP_ROOT = os.environ.get("BACKUP_ROOT", "/data/backups")
BACKUP_DATA_DIRS = [
os.environ.get("LOGOS_DIR", "/data/logos"),
os.environ.get("UPLOADS_DIR", "/data/uploads"),
os.environ.get("PLUGINS_DIR", "/data/plugins"),
]
SERVER_IP = "127.0.0.1"