Added dependencies, setup, and run info to README

This commit is contained in:
aewens 2019-06-06 13:32:01 -04:00
parent 5f9c38f829
commit e11b862cdc
1 changed files with 37 additions and 1 deletions

View File

@ -1,3 +1,39 @@
# launcher
What launches the server and client components
What launches the server and client components
## Dependencies
* Python 3.6+
* [abots](https://tildegit.org/aewens/abots)
## Setup
```bash
$ mkdir babili
$ cd babili
$ git clone https://tildegit.org/aewens/abots"
$ git clone https://tildegit.org/babili/core"
$ git clone https://tildegit.org/babili/launcher"
$ ln -s abots/abots core/abots
$ ln -s abots/abots launcher/abots
$ cd abots
$ python3 -m venv env
$ env/bin/pip3 install -r requirements.txt
$ cd ../launcher
$ cp settings.example.json settings.json
$ $EDITOR settings.json
```
## Run
```bash
$ cd abots
$ . env/bin/activate
$ ../launcher
$ python3 launch.py
```