Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 1.44 KB

README.md

File metadata and controls

65 lines (44 loc) · 1.44 KB

GPG group chat

GitHub version Snap CI branch Python version license

Setting up

First of all make sure that your have Python 3, pip and virtualenv installed.

Onde you have all those installed clone the project and go to the directory

$ git clone git@github.com:bahackers/gpg-group-chat.git
$ cd gpg-group-chat

After that we recommend create a virtualenv to install the app dependencies

$ virtualenv -p python3 .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt
$ python setup.py develop

Run the tests

We are using PyTest, if you follow the setting up steps run the command

$ py.test ./test

Run the app in server mode

$ gpg-group-chat --server

Run the app in client mode

$ gpg-group-chat --client

Run the markdown lint

Once the gem mdl is installed run:

$ ./run md-lint

If the gem is not installed, its possible installing it using the command:

$ gem install bundler
$ bundle install

Issue board

Waffle.io/bahackers/gpg-group-chat