-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.dev.example
More file actions
18 lines (15 loc) · 685 Bytes
/
Copy path.env.dev.example
File metadata and controls
18 lines (15 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Local host-development database settings.
# App-specific variables keep self-host `.env` release credentials from leaking
# into direct `mix` and `mix test` runs.
CODEX_POOLER_DEV_POSTGRES_HOST=localhost
CODEX_POOLER_DEV_POSTGRES_PORT=5433
CODEX_POOLER_DEV_POSTGRES_DB=codex_pooler_dev
CODEX_POOLER_DEV_POSTGRES_USER=postgres
CODEX_POOLER_DEV_POSTGRES_PASSWORD=postgres
CODEX_POOLER_TEST_POSTGRES_HOST=localhost
CODEX_POOLER_TEST_POSTGRES_PORT=5433
CODEX_POOLER_TEST_POSTGRES_DB=codex_pooler_test
CODEX_POOLER_TEST_POSTGRES_USER=postgres
CODEX_POOLER_TEST_POSTGRES_PASSWORD=postgres
# `docker-compose.dev.yml` still accepts POSTGRES_PORT for host-port binding.
POSTGRES_PORT=5433