From 56a061350586bcac60c653dcebbf5b4a92dca18e Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Wed, 30 May 2018 15:35:41 -0400 Subject: [PATCH] Add virtual env info and update app launch command --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a50ce22..70a643f6 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,16 @@ ./script/setup +The setup script will create a new Python virtual environment for the application to use. All of the scripts will activate this virutal envirnment automatically, but you can also manually activate it like this: + source .venv/bin/activate + +If you want to automatically load the virtual environment whenever you enter the project directory, take a look at [direnv](https://direnv.net/) + ## Running (development) To start the app and watch for changes: - DEBUG=1 ./app.py + DEBUG=1 ./script/server ## Testing