Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 527 Bytes

RUN.md

File metadata and controls

35 lines (29 loc) · 527 Bytes

Run checklist:

* [ ] Activate the virtual environment
* [ ] Run the static server
* [ ] Run the app

Activate the environment

On Windows:

.venv\Scripts\activate.bat

On Mac or Linux using virtualenv:

.venv/bin/activate

On Mac using conda:

conda activate py39

Run the static server

npm start

Run the app

python manage.py runserver 8001

Run celery

mkdir -p logs && celery -A koe worker -l info -c 1 --logfile=logs/celery.log