This code runs https://rdrama.net and https://watchpeopledie.tv
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
341 B
9 lines
341 B
#!/bin/bash
|
|
|
|
. ./.env
|
|
export DATABASE_URL='postgresql://postgres@postgres:5432'
|
|
export REDIS_URL='redis://redis:6379'
|
|
export PROXY_URL='http://opera-proxy:18080'
|
|
/etc/init.d/nginx start
|
|
# gunicorn files.__main__:app load_chat -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 -b 0.0.0.0:5001 -D
|
|
gunicorn files.__main__:app -w 1
|
|
|