This is a gaming quiz service. In it you can both create them and pass them and compete with your friends by score. Try it: http://quiz.glitchdev.space
For app installed sqlite and enabled cookies required
apt-get install git sqlitegit clone https://github.com/gl1tchdev/quizcd quizpython -m venv envsource env/bin/activatepip install -r requirements.txtuvicorn main:appCheck this source. Create gunicorn.conf.py:
from multiprocessing import cpu_count
bind = 'unix:/path/to/project/quiz.sock'
workers = cpu_count() + 1
worker_class = 'uvicorn.workers.UvicornWorker'
accesslog = '/path/to/project/access_log'
errorlog = '/path/to/project/error_log'Then create daemon like it described in article:
...
ExecStart=/path/to/project/env/bin/gunicorn main:app --config gunicorn.conf.py
...
After follow instruction in source and use bind path in nginx conf


