-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (19 loc) · 708 Bytes
/
Copy path.env.example
File metadata and controls
23 lines (19 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# =============================================================================
# .env.example — copy to .env and fill in real values
# NEVER commit .env to version control
# =============================================================================
# ----- PostgreSQL -----
POSTGRES_USER=postgres
POSTGRES_PASSWORD=changeme
POSTGRES_DB=app
POSTGRES_PORT=5432 # host-side port exposed in dev only
# ----- API / Express -----
API_PORT=4000
NODE_ENV=development # overridden to "production" in prod compose
# ----- React / Next -----
CLIENT_PORT=3000
API_URL=http://localhost:4000
# ----- pgAdmin (dev only) -----
PGADMIN_EMAIL=admin@local.dev
PGADMIN_PASSWORD=admin
PGADMIN_PORT=5050