2023-01-20 06:19:38 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-12-02 22:21:18 +00:00
|
|
|
. ./.env
|
2023-03-13 17:01:22 +00:00
|
|
|
export DATABASE_URL='postgresql://postgres@postgres:5432'
|
|
|
|
export REDIS_URL='redis://redis:6379'
|
|
|
|
export PROXY_URL='http://opera-proxy:18080'
|
2022-10-04 19:48:52 +00:00
|
|
|
/etc/init.d/nginx start
|
2023-01-23 00:42:30 +00:00
|
|
|
# gunicorn files.__main__:app load_chat -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 -b 0.0.0.0:5001 -D
|
2023-01-20 06:18:36 +00:00
|
|
|
gunicorn files.__main__:app -w 1
|