CLI backup tool.
Project description
Rireki
CLI backup tool. Schedule backups and keep your precious data safe.
Installation
Install the rireki cli running the following command:
pip install rireki
You need to call rireki backup
in order for backups to be performed. For example, you could use the following crontab configuration to perform backup checks every hour (remember to create the /var/log/rireki
directory as well):
0 * * * * rireki backup >> /var/log/rireki/cron.log 2>> /var/log/rireki/cron-error.log
Note: Make sure that the crontab can execute the rireki
command. That will depend on how you installed the package and which crontab you configure. Also keep in mind that by default the command will read the projects from the home folder of the current user. This can be overriden by setting the RIREKI_HOME
environment variable.
Usage
Get detailed information running rireki --help
.
There are three core concepts on how rireki manages backups:
-
Projects: A project is something you want to back up. For example a website database or a collection of files.
-
Drivers: A driver is the program used to create the backup files. For example zipping up a folder or dumping a database.
-
Stores: A store is the program used to save the backup files created with a driver. For example copying them to a local folder or uploading them to a 3rd party service.
In order to install a new project to backup, a configuration file can be added to ~/.rireki/projects/{project-name}.conf
. This will be a toml configuration file. It can either be created manually or calling rireki add {project-name}
.
Drivers
Files
This driver creates an archive with files copied from the local filesystem. The archive will be a zip file if possible or a tar file.
It needs the following configuration:
property | type | description |
---|---|---|
name | "files" |
The name of the driver. |
frequency | integer |
The frequency in seconds at which new backups should be made. |
paths | string[] |
Folders or files that will be included in the archive. |
Custom
This driver can be used if backing up a project is not supported by any of the other drivers. It consists of a custom script that will be called to generate the backup artifacts. The backup files should be placed on a path indicated by the RIREKI_BACKUP_PATH
env variable.
Once the script has completed, a file named logs.json
will also be placed on the path with the standard output and standard error printed by the script.
It needs the following configuration:
property | type | description |
---|---|---|
name | "custom" |
The name of the driver. |
frequency | integer |
The frequency in seconds at which new backups should be made. |
command | string |
Command to call in order to perform backups. |
timeout | integer |
Number of seconds where the command will be timed out and the backup will fail. |
Stores
Local
This store copies the backups to a folder in the same filesystem.
It needs the following configuration:
property | type | description |
---|---|---|
name | "local" |
The name of the store. |
path | string |
The path of the folder where the backups will be copied. |
Amazon Web Services
This store uploads the backups to an AWS S3 instance.
It needs the following configuration:
property | type | description |
---|---|---|
name | "aws" |
The name of the store. |
region | string |
The region where the S3 instance is located. |
access_key | string |
The access key ID. |
access_secret | string |
The secret access key. |
bucket | string |
The name of the bucket where the files will be uploaded. |
path | string |
The path within the bucket where the files will be placed. |
Digital Ocean
This store uploads the backups to a Digital Ocean Spaces instance.
It uses the same configuration as the AWS store, with the only exception that the name is "digital-ocean"
instead.
An example config file
For example, to backup a project named "Foobar" using the files
driver and the local
store we would create the following file at ~/.rireki/projects/foobar.conf
:
name="foobar"
[driver]
name="files"
paths=["/path/to/data/folder"]
frequency=1440
[store]
name="local"
path="/path/to/backups/folder"
As mentioned before, you could call rireki add foobar
to create this file.
Development
Run tests with pytest
and lint your code with flake8
(see the Github Actions configuration for more details).
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
File details
Details for the file rireki-0.0.4.tar.gz
.
File metadata
- Download URL: rireki-0.0.4.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 392dfeba4d71ab661d258563a1e292a6467f5f71ffc01eba8238c34657bad11f |
|
MD5 | b957d25af8d20c205d6777b9b2a0888c |
|
BLAKE2b-256 | eb20d6e72e19ed6284abb547451257fa7235fbdb66913c633e05501385b7ac83 |
File details
Details for the file rireki-0.0.4-py2-none-any.whl
.
File metadata
- Download URL: rireki-0.0.4-py2-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/2.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7a71a48dcbb688766c146c59af7e5c9921f2d95229f9a63cf788373dcf3493b |
|
MD5 | ffbf421108fe43649f95447f8aa84a07 |
|
BLAKE2b-256 | 19d495753c2126e6f91de88ee02199c46dd75860d9248d1c7c0d1152d0737b77 |