No description
|
||
---|---|---|
images | ||
.gitlab-ci.yml | ||
.pylintrc | ||
LICENSE | ||
main.py | ||
README.md | ||
requirements.txt | ||
style.css |
Restic UI
Webinterface for Restic, created with PyWebIO
restic_ui_pywebio
About
This project is not related to restic.net
This is my Restic UI created with 'low code framework pywebio'.
The project is a UI for the CLI tool restic
This project is quite far from perfect, but it helped me a lot to understand the world of Python, PyCharm and git a little.
If it helps someone along the way as well, I'm glad. For questions and suggestions you can write me in my forum
And now have fun with one of the best backup tools!
Dependencies
- restic
- python >= 3.10
- pipenv
- git
Functions Restic-UI
The data of the backup database can be stored encrypted. For this purpose, there is a key file that can be stored in a safe place.
Restic functions that are included in the UI
- init
- backup
- mount
- restore
- snapshots
- ls
- check
- unlock
- stats
- prune
- version
- migrate check
- migrate update
Restic REST-Backend Functions included
- init
- backup
- mount
- restore
- snapshots
- ls
- check
- unlock
- stats
- prune
Source: https://github.com/restic/rest-server
Installation
Install restic if not installed
apt install git
apt install restic
restic self-update
Clone Repository
git clone https://gitlab.com/Bullet64/restic_ui_pywebio.git
Create env
cd /home/USER/restic-ui-pywebio
We upgrade to last pip version
python -m pip install -U pip
pip install pipenv
pip install pywebio
pipenv --python 3.10
pipenv shell
Create env with uv
cd /home/USER/restic-ui-pywebio
uv init
uv venv --python 3.13
source .venv/bin/activate
uv add pywebio
uv add pywebio_battery
Usage
python main.py
Known problems
None at present
Tested on
- Manjaro 22.2.0 Sikaris
- Linux Mint 21 Cinnamon
with
- python >= 3.10