A quiz app used to demonstrate WebSockets and Django Channels in my talk Django Unchanneled.
The frontend was developed by my fellow friend Douglas Gimli. Thanks mate ❤️
Basically, using Docker.
docker-compose up -d
docker-compose run web python manage.py collectstatic
To install some demo data, use:
docker-compose run web python manage.py loaddata questions.json
After, just access your localhost and start playing. It's more fun to play with your friends, you may use ngrok to expose your local network to the Internet!
If you want to create a superuser:
docker-compose run web python manage.py createsuperuser
We also have tests! To run them:
docker-compose run web python manage.py test