A simple GUI for restic
repositoryaccess_keypasswordurl: Without the leadings3:secret_key
resticpath
python3.10or newer;requirements.txtfor runtime dependencies;requirements.dev.txtfor development dependencies.make(optional);
Simply run
virtualenv venv -p python3.10
. ./venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements.dev.txtSimply run
make docsThis will generate the HTML doc of the project, and the index file should be at
docs/index.html. To have it directly in your browser, run
make docs-browserDon't forget to run
maketo format the code following black, typecheck it using mypy, and check it against coding standards using pylint.