add live page
This commit is contained in:
parent
114bcca24e
commit
eb8c42d0c0
19 changed files with 2759 additions and 199 deletions
11
Makefile
11
Makefile
|
@ -7,4 +7,13 @@ LOGFILE ?= uwsgi.log
|
|||
|
||||
start:
|
||||
python3 -m venv venv
|
||||
. venv/bin/activate && pip install -r requirements.txt && uwsgi --http :$(PORT) --wsgi-file backend.py --callable app
|
||||
. venv/bin/activate && pip install -r requirements.txt && uwsgi --http :$(PORT) --wsgi-file backend.py --callable app
|
||||
|
||||
websocket:
|
||||
python3 -m venv venv
|
||||
. venv/bin/activate && pip install -r requirements.txt && pip install websockets && uwsgi --ini uwsgi.ini
|
||||
|
||||
# Version en arrière-plan (démon)
|
||||
websocket-daemon:
|
||||
python3 -m venv venv
|
||||
. venv/bin/activate && pip install -r requirements.txt && pip install websockets && uwsgi --ini uwsgi.ini --daemonize $(LOGFILE)
|
Loading…
Add table
Add a link
Reference in a new issue