Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/puente-dr/serverless into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
awalsh272 committed Mar 4, 2024
2 parents 067fe54 + a20c967 commit 3570ec9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ puente-etl/lambdas/etl/utils/secretz.py
puente-analytics-service/lambdas/etl/env.json
puente-analytics-service/lambdas/etl/.aws-sam/
puente-analytics-service/lambdas/etl/env.other.json
puente-analytics-service/lambdas/etl/env.prod.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import json

ACTUAL_ENV = True
PRODUCTION = False

if ACTUAL_ENV:
env_file = "./actual_env.json"
if PRODUCTION:
env_file = "./env.prod.json"
else:
env_file = "./env.json"

Expand Down

0 comments on commit 3570ec9

Please sign in to comment.