s/run/run-dev/

This commit is contained in:
Flancian 2020-11-11 20:52:36 +01:00
parent cbd07ecded
commit 47a8fbdcdf
1 changed files with 3 additions and 3 deletions

View File

@ -15,16 +15,16 @@ Install OS dependencies:
$ apt-get install python3 python3-venv python3-pip $ apt-get install python3 python3-venv python3-pip
``` ```
Then Flask inside a virtual environment in this directory: Then install Flask (and other required packages) inside a Python virtual environment in this directory:
``` ```
python3 -m venv venv python3 -m venv venv
. venv/bin/activate . venv/bin/activate # you'll need to run this every time before running the server.
pip install -r requirements.txt pip install -r requirements.txt
``` ```
Then run the development server: Then run the development server:
``` ```
./run.sh ./run-dev.sh
``` ```
Please see [CONTRIBUTING](CONTRIBUTING.md) for instructions on how to Please see [CONTRIBUTING](CONTRIBUTING.md) for instructions on how to