Skip to content

Commit cff7fa4

Browse files
committed
Adjust docs
1 parent 29efb18 commit cff7fa4

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

β€Ždocs/index.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ building.
3535
It's perfect for:
3636

3737
- 🧱 Building SaaS apps
38-
- πŸ’» Running multiple stacks locally
38+
- πŸ’» Running multiple stacks (locally and remotely)
3939
- πŸ“¦ Easy database migrations
4040
- πŸ”§ Customizing your toolchain
4141

β€Ždocs/psql.mdβ€Ž

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@
44
SuperStack makes it easy to run psql inside the container using a helper
55
script.
66

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+
717
## πŸ“Ÿ Open a psql Shell
818
919
To connect interactively:
File renamed without changes.

0 commit comments

Comments
Β (0)