We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29efb18 commit cff7fa4Copy full SHA for cff7fa4
3 files changed
βdocs/index.mdβ
@@ -35,7 +35,7 @@ building.
35
It's perfect for:
36
37
- π§± Building SaaS apps
38
-- π» Running multiple stacks locally
+- π» Running multiple stacks (locally and remotely)
39
- π¦ Easy database migrations
40
- π§ Customizing your toolchain
41
βdocs/psql.mdβ
@@ -4,6 +4,16 @@
4
SuperStack makes it easy to run psql inside the container using a helper
5
script.
6
7
+Postgres clients need credentials, one way is to add these to the Compose file:
8
+
9
+```yaml title="db/compose.yaml"
10
+postgres:
11
+ environment:
12
+ PGUSER: ${POSTGRES_USER:?}
13
+ PGPASSWORD: ${POSTGRES_PASSWORD:?}
14
+ PGDATABASE: app
15
+```
16
17
## π Open a psql Shell
18
19
To connect interactively:
βdocs/bluegreen.mdβ βdocs/zerodowntime.mdβdocs/bluegreen.md renamed to docs/zerodowntime.md
0 commit comments