fixing initial

This commit is contained in:
Cayo Puigdefabregas 2021-02-12 16:26:59 +01:00
parent e5ca77f018
commit 481515363b
2 changed files with 6 additions and 1 deletions

5
examples/env.example Normal file
View File

@ -0,0 +1,5 @@
SECRET_KEY=zrhnooq6)sb+0+xb)(o0rvbf5)a(vc8ncv&1&kng@3i_pmx3oy
DEBUG=True
ALLOWED_HOSTS=.localhost,127.0.0.1
DATABASE_URL=postgres://orchestra:orchestra@127.0.0.1:5432/orchestra
STATIC_ROOT=PATH_TO_STATIC_ROOT

View File

@ -15,5 +15,5 @@ sudo pip3 install -r total_requirements.txt
sudo pip3 install -e .
django-admin.py startproject panel --template="orchestra/conf/ribaguifi_template"
cp .env.example panel/.env
cp examples/env.example panel/.env
python3 panel/manage.py migrate