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_URLandREDIS_URLin your environ, then runpython manage.py runserver. - Or, to run locally with multiple proceses by setting the environ, then running the two commands (
daphneandrunworker) as shown in theProcfile.