File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 39
39
postgres :
40
40
image : postgres
41
41
env :
42
- POSTGRES_PASSWORD : postgres
42
+ POSTGRES_PASSWORD : ${{ env.OSF_DB_PASSWORD }}
43
43
options : >-
44
44
--health-cmd pg_isready
45
45
--health-interval 10s
66
66
postgres :
67
67
image : postgres
68
68
env :
69
- POSTGRES_PASSWORD : postgres
69
+ POSTGRES_PASSWORD : ${{ env.OSF_DB_PASSWORD }}
70
70
options : >-
71
71
--health-cmd pg_isready
72
72
--health-interval 10s
93
93
postgres :
94
94
image : postgres
95
95
env :
96
- POSTGRES_PASSWORD : postgres
96
+ POSTGRES_PASSWORD : ${{ env.OSF_DB_PASSWORD }}
97
97
options : >-
98
98
--health-cmd pg_isready
99
99
--health-interval 10s
@@ -122,7 +122,7 @@ jobs:
122
122
postgres :
123
123
image : postgres
124
124
env :
125
- POSTGRES_PASSWORD : postgres
125
+ POSTGRES_PASSWORD : ${{ env.OSF_DB_PASSWORD }}
126
126
options : >-
127
127
--health-cmd pg_isready
128
128
--health-interval 10s
@@ -150,7 +150,7 @@ jobs:
150
150
image : postgres
151
151
152
152
env :
153
- POSTGRES_PASSWORD : postgres
153
+ POSTGRES_PASSWORD : ${{ env.OSF_DB_PASSWORD }}
154
154
options : >-
155
155
--health-cmd pg_isready
156
156
--health-interval 10s
Original file line number Diff line number Diff line change 5
5
ENABLE_VARNISH = True
6
6
ENABLE_ESI = False
7
7
8
- OSF_DB_PASSWORD = 'postgres'
8
+ OSF_DB_PASSWORD = os . environ . get ( 'OSF_DB_PASSWORD' )
9
9
10
10
SESSION_ENGINE = 'django.contrib.sessions.backends.db'
11
11
Original file line number Diff line number Diff line change 10
10
import os
11
11
12
12
DB_PORT = 5432
13
- OSF_DB_PASSWORD = 'postgres'
13
+ OSF_DB_PASSWORD = os . environ . get ( 'OSF_DB_PASSWORD' )
14
14
15
15
DEV_MODE = True
16
16
DEBUG_MODE = True # Sets app to debug mode, turns off template caching, etc.
You can’t perform that action at this time.
0 commit comments