Backup solution for Masonite.
Project description
Masonite Backup
Backup solution for Masonite.
Features
- Backup Database
- Backup Files
- Store Backup Locally in the filesystem
- Email Backup
- Store Backup in other Masonite Supported Storage Drivers [s3]
Installation
pip install masonite-backup
Configuration
Add BackupProvider to your project in config/providers.py:
# config/providers.py
# ...
from backup import BackupProvider
# ...
PROVIDERS = [
# ...
# Third Party Providers
BackupProvider,
# ...
]
Then you can publish the package resources (if needed) by doing:
python craft package:publish backup
Usage
Once you publish the package resources, you can use the backup command to backup your database and files. Before that if you want to configure options of backup then you can do that by updating config/backup.py configuration file.
# config/backup.py
FILENAME = "backup"
DIRECTORY = "backup"
SOURCE = {
"root": base_path(),
"excludes": [
".git",
"storage",
"venv",
"node_modules",
"__pycache__",
# add more...
],
}
S3_BACKUP = False # Whether or not to backup to S3.
EMAIL_BACKUP = False # Whether or not to email the backup.
EMAIL_BACKUP_TO = "" # The email address to send the backup to.
EMAIL_SUBJECT = "System Backup" # The email subject.
Note: Make sure you have
EMAIL_BACKUPset toTrueandEMAIL_BACKUP_TOset to a valid email address, to send the backup via email. Also don't forget to setup SMTP inconfig/mail.pyconfiguration file or in.envfile. In case you want to backup to S3, then make sure you haveS3_BACKUPset toTrueand S3 storage configuration.
MAIL_DRIVER=smtp
MAIL_FROM=
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
AWS_CLIENT=
AWS_SECRET=
AWS_BUCKET=
AWS_REGION=
Backup Database and Files
python craft backup:run
Backup Database Only
python craft backup:run --only-db
Backup Files Only
python craft backup:run --only-files
License
Backup is open-sourced software licensed under the MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file masonite-backup-0.0.4.tar.gz.
File metadata
- Download URL: masonite-backup-0.0.4.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26195746f515f6cc5d1d22439ddab8b2690b103730e0d34822392f3c420a13c1
|
|
| MD5 |
4cb05a8ecc788afd7f06c56fb4283a20
|
|
| BLAKE2b-256 |
7cc96d9dfbec337767d5b7a6e9f68c92c83f1e9bf2ef4ae31e561d3f4012a6d4
|
File details
Details for the file masonite_backup-0.0.4-py3-none-any.whl.
File metadata
- Download URL: masonite_backup-0.0.4-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4feaabbefc376c24607342ee0509fb98fda1b4adf24f9c8f5bff74d25995908
|
|
| MD5 |
07ec60be01b2b9df42d45f1bdfcc35ce
|
|
| BLAKE2b-256 |
f98067c4e54b26f92c79c42e0ef46ca3cab38bbc352c59d37032fe1b1ac29bd8
|