adding improvements to init_project.sh

This commit is contained in:
Cayo Puigdefabregas 2021-02-15 21:11:24 +01:00
parent 1f57cdb48d
commit 57688426b6
2 changed files with 16 additions and 1 deletions

View File

@ -22,7 +22,6 @@ docker-compose run web bash
4. Run on the web docker container the first time: 4. Run on the web docker container the first time:
``` ```
pip3 install -e /code
su - orchestra su - orchestra
bash /code/examples/init_project.sh bash /code/examples/init_project.sh
``` ```

View File

@ -1,7 +1,23 @@
sudo pip3 install -e /code
psql -U orchestra -h postgres < /code/examples/createdb.sql psql -U orchestra -h postgres < /code/examples/createdb.sql
cd ~ cd ~
django-admin.py startproject panel --template="/code/orchestra/conf/ribaguifi_template" django-admin.py startproject panel --template="/code/orchestra/conf/ribaguifi_template"
cp /code/examples/env.example panel/.env cp /code/examples/env.example panel/.env
cd panel
python3 manage.py setupcronbeat
python3 manage.py syncperiodictasks
#sudo apt-get install -y rabbitmq-server
sudo python3 manage.py setuplog
python3 manage.py collectstatic --noinput
#sudo apt-get install -y nginx-full uwsgi uwsgi-plugin-python3
#sudo python3 manage.py setupnginx --user orchestra
#sudo python3 manage.py startservices
# python3 panel/manage.py migrate # python3 panel/manage.py migrate