14 lines
No EOL
511 B
Text
14 lines
No EOL
511 B
Text
sudo apt update
|
|
sudo apt upgrade
|
|
sudo apt install postgresql postgresql-contrib
|
|
sudo apt install redis-server
|
|
rm /etc/redis/redis.conf
|
|
cp /drama/redis.conf /etc/redis/redis.conf
|
|
sudo systemctl restart redis.service
|
|
rm /etc/postgresql/12/main/pg_hba.conf
|
|
cp /drama/pg_hba.conf /etc/postgresql/12/main/pg_hba.conf
|
|
apt install python3-pip
|
|
sudo pip3 install -r requirements.txt
|
|
cp env /env
|
|
apt install gunicorn
|
|
gunicorn files.__main__:app -k gevent -w 2 --reload -b 0.0.0.0:80 --reload-extra-file ./files/templates/ |