mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-24 11:53:43 +00:00
Explicit DATABASE_URL
This commit is contained in:
parent
a625327226
commit
c3d6440830
1 changed files with 4 additions and 1 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -65,10 +65,13 @@ jobs:
|
|||
image: postgres:12
|
||||
ports:
|
||||
- 5432:5432
|
||||
env:
|
||||
POSTGRES_PASSWORD: postgres
|
||||
|
||||
env:
|
||||
CELERY_BROKER_URL: "redis://localhost:6379/0"
|
||||
DATABASE_URL: "postgres://postgres"
|
||||
# postgres://user:password@host:port/database
|
||||
DATABASE_URL: "postgres://postgres:postgres@postgres:5432/postgres"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
|
|||
Loading…
Reference in a new issue