Some setup docs

This commit is contained in:
Luke Murphy 2020-07-05 02:44:10 +02:00
parent 4adac0ec20
commit f3d923b395
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 17 additions and 1 deletions

View File

@ -4,8 +4,24 @@ A swarm of dreams.
# Development
```
$ git clone https://git.autonomic.zone/autonomic-cooperative/magic-app
$ cd magic-app
```
### Docker Way
```
$ docker-compose up
```
Then see http://localhost:5000.
### Manual Way
```
$ python3 -m pip install --user pipx
$ pipx install poetry
$ poetry install
$ cp .envrc.sample .envrc
$ direnv allow
$ poetry run flask run
```