File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -14,3 +14,6 @@ CAS_SERVER=""
14
14
OIDC_DISCOVERY_ENDPOINT=""
15
15
POSTGRES_PORT="5432"
16
16
MYHACKUPC_PORT="8000"
17
+ GOOGLE_WALLET_ISSUER_ID=""
18
+ GOOGLE_WALLET_CLASS_SUFFIX=""
19
+ GOOGLE_WALLET_APPLICATION_CREDENTIALS="/path/to/credentials.json" # remember to allow read perms
Original file line number Diff line number Diff line change 58
58
'corsheaders' ,
59
59
]
60
60
61
- GOOGLE_WALLET_ENABLED = True # Set to false to disable google wallet
61
+ GOOGLE_WALLET_ENABLED = False # Set to false to disable google wallet
62
62
63
63
if BAGGAGE_ENABLED :
64
64
INSTALLED_APPS .append ('baggage' )
200
200
try :
201
201
HACKATHON_DEV_EMAILS .append (os .environ ['ADMIN_EMAIL' ])
202
202
except NameError :
203
- HACKATHON_DEV_EMAILS = [os .environ ['ADMIN_EMAIL' ],]
203
+ HACKATHON_DEV_EMAILS = [os .environ ['ADMIN_EMAIL' ], ]
204
204
205
205
# File upload configuration
206
206
MEDIA_ROOT = 'files'
294
294
MAX_VOTES_TO_APP = 30
295
295
296
296
APPLICATION_EXPIRATION_TYPES = {
297
- 'H' : True , # Hacker allways expire, do not change this
298
- 'M' : MENTOR_EXPIRES , # Mentor can expire
299
- 'V' : VOLUNTEER_EXPIRES , # Volunteer can expire
297
+ 'H' : True , # Hacker allways expire, do not change this
298
+ 'M' : MENTOR_EXPIRES , # Mentor can expire
299
+ 'V' : VOLUNTEER_EXPIRES , # Volunteer can expire
300
300
}
301
301
302
302
MEALS_TOKEN = os .environ .get ('MEALS_TOKEN' , None )
You can’t perform that action at this time.
0 commit comments