From f3d923b395204333671218d51eeddefa8aaaa00e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 5 Jul 2020 02:44:10 +0200 Subject: [PATCH] Some setup docs --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 30347fb..aaf5c9a 100644 --- a/README.md +++ b/README.md @@ -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 +```