We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f484da0 commit f10a02eCopy full SHA for f10a02e
.github/workflows/tests.yml
@@ -13,7 +13,7 @@ jobs:
13
- 6432:6432
14
env:
15
POSTGRES_USER: krylosov-aa
16
- POSTGRES_PASSWORD:
+ POSTGRES_PASSWORD: test
17
POSTGRES_DB: test
18
options: >-
19
--health-cmd="pg_isready -U test -d test_db"
examples/database.py
@@ -19,7 +19,7 @@ def create_engine(host: str) -> AsyncEngine:
20
# In production code, you will probably take these parameters from env
21
pg_user = "krylosov-aa"
22
- pg_password = ""
+ pg_password = "test"
23
pg_port = 6432
24
pg_db = "test"
25
return create_async_engine(
0 commit comments