Backup, Sync and Restore Databases and Media
Project description
Django sync env
django-sync-env is a Django app to manage backing up and restoring django databases and media assets easy.
Detailed documentation is in the "docs" directory. (needs some work)
Requirements:
- configurable backups and restore which can be ran on demand, celery cron or in dev.
- support s3 bucket and file storage options first, add azure blob storage later
- interactive prompts for local dev
- command line options with --no-input for CICD and automations
- restore latest option for media and backups for X env
- backup before restore option
TODO:
- update docs around how to development this package
- remove command options which we wont use
- make sure all management commands work will good error logging and handling
Quick start
- Add "django_sync_env" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...,
"django_sync_env",
]
- Configure the app via a settings file .typically
./settings/partial/sync_env.py
for base configuration, don't forget to import this file via your base.py settings file And override any required settings per environment via./settings/partials/[env].py
see example_partials
There is a s3 terraform example for provisioning an aws s3 bucket, iam user, roles and policy to allow for remote backup/restore to/from a secure s3 bucket.
See management commands for more details for each of the commands available.
./manage.py sync_env_backup_db
./manage.py sync_env_backup_media
./manage.py sync_env_restore_db
./manage.py sync_env_restore_media
./manage.py sync_env_list_backups
Publish package
prerequisites : Docker
To release a new version of this package create a .env file at the root of this repo
POETRY_PYPI_TOKEN_PYPI=<KEY>
add our pypi api key and then run.
$ ./publish.sh
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django_sync_env-0.2.3.tar.gz
(20.0 kB
view hashes)
Built Distribution
Close
Hashes for django_sync_env-0.2.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 428a7a7682bf5cf038ba334232dd0f1a1e400798e5acddffca261c8e03f6d938 |
|
MD5 | 6ebf6b968ed1df04337443abf07b5a01 |
|
BLAKE2b-256 | 72fa300ceca9fa695ab542edd872a078ae277d93ccb03ff78343fc7de5d1cf3f |