-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdbconfig.yml
More file actions
29 lines (25 loc) · 954 Bytes
/
dbconfig.yml
File metadata and controls
29 lines (25 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
local:
dialect: postgres
datasource: host=localhost port=25432 user=postgres password=postgres dbname=fortress_local sslmode=disable
dir: migrations/schemas
table: migrations
local-clone:
dialect: postgres
datasource: host=localhost port=25432 user=postgres password=postgres dbname=fortress_v2_prod sslmode=disable
dir: migrations/schemas
table: migrations
test:
dialect: postgres
datasource: host=localhost port=35432 user=postgres password=postgres dbname=fortress_local_test sslmode=disable
dir: migrations/schemas
table: migrations
dev:
dialect: postgres
datasource: host=${DB_HOST} port=${DB_PORT} user=${DB_USER} password=${DB_PASS} dbname=${DB_NAME} sslmode=${DB_SSL_MODE}
dir: migrations/schemas
table: migrations
prod:
dialect: postgres
datasource: host=${DB_HOST} port=${DB_PORT} user=${DB_USER} password=${DB_PASS} dbname=${DB_NAME} sslmode=${DB_SSL_MODE}
dir: migrations/schemas
table: migrations