No description
Find a file
frank aac38ecce5 README.md aktualisiert
Add #create env with uv' to README.md
2025-03-06 16:03:17 +00:00
images add restic_screen.png 2022-10-15 11:51:14 +02:00
.gitlab-ci.yml fix pylint warnings 2023-02-12 08:44:16 +01:00
.pylintrc fix pylint warnings 2023-02-11 19:44:34 +01:00
LICENSE Add LICENSE 2022-10-15 09:58:06 +00:00
main.py save 2023-04-07 14:24:53 +02:00
README.md README.md aktualisiert 2025-03-06 16:03:17 +00:00
requirements.txt test .gitlab_ci.yml 2023-02-05 16:46:49 +01:00
style.css first commit 2022-10-03 12:56:58 +02:00

Restic UI

Webinterface for Restic, created with PyWebIO

Linting Linting Python Version Python Version License

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

main screen

Tested on

  • Manjaro 22.2.0 Sikaris
  • Linux Mint 21 Cinnamon

with

  • python >= 3.10