Combining waitroom, forum and chat functionalites....
To run this app locally, you'll need Python, MySQL, and Redis.
Then, to run:
- Install requirements:
pip install -r requirements.txt
(you almost certainly want to do this in a virtualenv). - Migrate: python manage.py migrate`
- Or, to run locally with
runserver
, setDATABASE_URL
andREDIS_URL
in your environ, then runpython manage.py runserver
. - Or, to run locally with multiple proceses by setting the environ, then running the two commands (
daphne
andrunworker
) as shown in theProcfile
.