2023-09-20 19:31:42 +02:00
|
|
|
How to get started:
|
|
|
|
create venv:
|
|
|
|
python -m venv venv
|
|
|
|
start venv:
|
|
|
|
source venv/bin/activate
|
|
|
|
install requiremens:
|
|
|
|
pip install -r requirements.txt
|
2023-09-20 23:20:14 +02:00
|
|
|
create the log folder:
|
|
|
|
mkdir logs
|
2023-09-20 19:31:42 +02:00
|
|
|
start the program:
|
2024-02-17 02:16:49 +01:00
|
|
|
venv/bin/gunicorn -b "127.0.0.1:5000" -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 main:app
|
|
|
|
You can now accses the Website on http://127.0.0.1:5000
|