From e6e35607d3f3b74a1c0fb020a30fdf02393a80eb Mon Sep 17 00:00:00 2001 From: Ilya Zhuravlev Date: Wed, 14 Oct 2020 22:28:18 -0400 Subject: [PATCH] Add README --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d469f02 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# vial-gui + +## Releases + +Currently, no releases are provided. You can download a precompiled binary from latest GitHub Action: https://github.com/vial-kb/vial-gui/actions (need to log into a github account). + +## Development + +Python 3.6 is recommended (3.6 is the latest version that is officially supported by `fbs`). + +Install dependencies: + +``` +python3 -m venv venv +source venv/bin/activate +pip install -r requirements.txt +``` + +To launch the application afterwards: + +``` +source venv/bin/activate +fbs run +```