fixed bug in project yml files to find the core
This commit is contained in:
parent
cdd0464a3e
commit
411ff03786
2 changed files with 9 additions and 3 deletions
|
|
@ -10,8 +10,9 @@ django:
|
||||||
host: DJANGO_IP
|
host: DJANGO_IP
|
||||||
port: DJANGO_PORT
|
port: DJANGO_PORT
|
||||||
allowed_hosts: [127.0.0.1, 'PROJECT_NAME.BRANCH_EXT',]
|
allowed_hosts: [127.0.0.1, 'PROJECT_NAME.BRANCH_EXT',]
|
||||||
settings:
|
paths:
|
||||||
folder: "core"
|
settings:
|
||||||
|
folder: "core"
|
||||||
docker:
|
docker:
|
||||||
database:
|
database:
|
||||||
env: {name: POSTGRES_DB, pass: POSTGRES_PASSWORD, user: POSTGRES_USER}
|
env: {name: POSTGRES_DB, pass: POSTGRES_PASSWORD, user: POSTGRES_USER}
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,12 @@ database:
|
||||||
users:
|
users:
|
||||||
admin: {name: DATABASE_ADMIN_NAME, pass: DATABASE_ADMIN_PASS}
|
admin: {name: DATABASE_ADMIN_NAME, pass: DATABASE_ADMIN_PASS}
|
||||||
default: {name: DATABASE_USER_NAME, pass: DATABASE_USER_PASS}
|
default: {name: DATABASE_USER_NAME, pass: DATABASE_USER_PASS}
|
||||||
django: {host: DJANGO_IP, port: DJANGO_PORT}
|
django:
|
||||||
|
host: DJANGO_IP
|
||||||
|
port: DJANGO_PORT
|
||||||
|
paths:
|
||||||
|
settings:
|
||||||
|
folder: "core"
|
||||||
logging:
|
logging:
|
||||||
paths: [null]
|
paths: [null]
|
||||||
maintenance:
|
maintenance:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue