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 cda43aa commit 40c35bfCopy full SHA for 40c35bf
README.md
@@ -32,11 +32,11 @@ from psqlpy_piccolo import PSQLPyEngine
32
33
DB = PSQLPyEngine(
34
config={
35
- "host": os.environ.get("PG_HOST", "127.0.0.1"),
36
- "port": os.environ.get("PG_PORT", 5432),
37
- "user": os.environ.get("PG_USER", "postgres"),
38
- "password": os.environ.get("PG_PASSWORD", "postgres"),
39
- "database": os.environ.get("PG_DATABASE", "piccolo"),
+ "host": "127.0.0.1",
+ "port": 5432,
+ "user": "postgres",
+ "password": "postgres",
+ "database": "psqlpy-piccolo",
40
},
41
)
42
```
0 commit comments