forked from rDrama/rDrama
1
0
Fork 0
rDrama/setup

16 lines
486 B
Plaintext
Raw Normal View History

2021-09-14 03:45:09 +00:00
cd /drama
sudo apt update
sudo apt -y upgrade
sudo apt -y install postgresql postgresql-contrib
sudo apt -y install redis-server
cp redis.conf /etc/redis/redis.conf
sudo systemctl restart redis.service
cp pg_hba.conf /etc/postgresql/12/main/pg_hba.conf
sudo service postgresql restart
sudo psql -U postgres -f schema.sql postgres
sudo psql -U postgres -f seed-db.sql postgres
sudo apt -y install python3-pip
sudo pip3 install -r requirements.txt
sudo apt -y install gunicorn
2021-09-14 03:45:20 +00:00
. ./env
2021-09-14 03:45:09 +00:00
env