borg-qt/README.md

173 lines
4.8 KiB
Markdown
Raw Permalink Normal View History

# Borg-Qt
Borg-Qt is a Python 3 based graphical frontend for the backup tool
[BorgBackup](https://github.com/borgbackup/borg) as its name implies it is
using the Qt5 Framework. Currently it works only on Linux.
## Motivation
I think Borg is a great backup tool which should be available to many more
users. Since command line tools can be a bit scary for less experienced users I
decided to write a GUI as my "thesis" during my final semester at
the IBZ school in Aarau, Switzerland.
## Getting Started
These instructions will get you a copy of the project up and running on your
local machine.
### Prerequisites
You need to have Borg installed in order to have Borg-Qt working. You can get a
binary for your operating system here:
https://github.com/borgbackup/borg/releases
On a Debian based system you can install it by copying to `~/.local/bin/`. Borg
needs to be able to get executed by calling the command `borg`.
2019-05-31 10:56:52 +02:00
``` bash
cp ~/Downloads/borg-linux64 ~/.local/bin/borg
chmod +x ~/.local/bin/borg
2019-05-31 10:56:52 +02:00
```
For other systems check their
[documenation](https://borgbackup.readthedocs.io/en/stable/).
### Installing
2019-05-30 16:58:48 +02:00
1. Installing Borg-Qt is very simple. Download the binary for your operating
2019-05-31 10:56:52 +02:00
system here: <https://github.com/borgqt/borg-qt/releases> or install it with pip:
``` bash
pip3 install borg-qt
```
2. Copy the config file from
[docs/borg_qt.conf.example](https://github.com/borg-qt/borg-qt/blob/master/docs/borg_qt.conf.example)
to `~/.config/borg_qt/borg_qt.conf` and edit it to contain a valid path to
your BorgBackup repository and the password. Put all your changes into the
2019-05-30 12:21:31 +02:00
`[borgqt]` section. As of now there is no automated way to setup Borg-Qt.
2019-05-30 16:58:48 +02:00
3. Run the binary by double clicking on it or by copying it to
`~/.local/bin/` like Borg. If you do that you might want to create a desktop
file for it. Puth the following code into a `borg-qt.desktop` file in
`~/.local/share/applications/`.
```
[Desktop Entry]
Version=1.0
Name=Borg-Qt
Exec=/home/username/.local/bin/borg-qt
Terminal=false
Type=Application
Categories=Tools
MimeType=x-scheme-handler/tg;
```
Make sure the file is executable:
2019-05-31 10:56:52 +02:00
``` bash
chmod +x ~/.local/share/applications/borg-qt.desktop
```
Now you should find Borg-Qt in your desktop's start menu.
If you installed Borg-Qt with pip you can either run `borg_qt` from the
command line or edit the desktop file to exec `borg_qt` instead of the full
path.
## Development
To start working on Borg-Qt first clone the git repository and install
BorgBackup as described in [Prerequisites].
2019-05-31 10:56:52 +02:00
```bash
git clone https://github.com/borg-qt/borg-qt.git
2019-05-31 10:56:52 +02:00
```
Now create a virtual environment.
2019-05-31 10:56:52 +02:00
```bash
cd borg-qt
python3 -m venv venv
2019-05-31 10:56:52 +02:00
```
And activate it.
2019-05-31 10:56:52 +02:00
```bash
source venv/bin/activate
2019-05-31 10:56:52 +02:00
```
Finally you can install Borg-Qt and it's dependencies.
2019-05-31 10:56:52 +02:00
```bash
pip3 install -e .
2019-05-31 10:56:52 +02:00
```
You're now all set to work on Borg-Qt. It's a good idea to run the tests before
starting. You can do this with the following command from the root of the
repository.
2019-05-31 10:56:52 +02:00
```bash
make test
2019-05-31 10:56:52 +02:00
```
To make testing the application while programming a bit easier there's a script
which reloads the application everytime a file changes in the `borg_qt`
directory. You to use it run the following command from the root of the
repository.
2019-05-31 10:56:52 +02:00
```bash
./scripts/debugging.sh
2019-05-31 10:56:52 +02:00
```
### ToDos
To have a look at all the planned tasks you can have a look at the planned
features here: [todos.md](docs/todos.md)
## Used packages
2019-04-28 20:40:46 +02:00
- [PyQt5](https://pyqt.readthedocs.io/en/latest/) - the GUI framework
- [PyInstaller](https://pyinstaller.readthedocs.io/en/stable/) - used for
creating the binary
- [pytest](https://docs.pytest.org/en/latest/) - used for testing
- [pytest-cov](https://pytest-cov.readthedocs.io/en/latest/) - used for
coverage analysis
## Contributing
Everyone is welcome to submit pull requests and reports issues.
Please follow PEP8 and remove unnecessary white space when you contribute code.
And most importantly make sure that you don't break any tests and if possible
write tests for your code.
## Versioning
Currently there is no versioning as such. In the future a versioning scheme
based on [semantic versioning](http://semver.org/) might get used. The master
branch is considered to be the stable branch. Other branches might be highly
experimental.
## Authors
- Andreas Zweili - *Initial work* -
[Nebucatnetzer](https://github.com/Nebucatnetzer)
## License
This project is licensed under the GPLv3 License - see the <LICENSE> file
for details.
## Acknowledgments
- Thanks to PurpleBooth for her [README
template](https://gist.github.com/PurpleBooth/109311bb0361f32d87a2).
- Thanks to [Back in Time](https://github.com/bit-team/backintime) for the
inspiration.
- Thanks to [Feather Icons](https://github.com/feathericons/feather) for their
great icon set.
- Thanks to [Kenneth Reitz](https://github.com/kennethreitz/setup.py) for the
example repo for setup.py