- Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.example
More file actions
Latest commit
25 lines (21 loc) · 571 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (21 loc) · 571 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
#!/usr/bin/env bash
# shellcheck disable=SC2034
####################
# deployment
# needed for bin scripts to work
####################
# Update these
ACCOUNT_ID_AWS=123456789
REGION=eu-west-2
ENVIRONMENT=prod
# needed for bin scripts but can be left as defaults
exportSKIP_BUNDLE=0
# export SKIP_BUNDLE=1
LAMBDA_FUNCTION_NAME="HttpServer"
LAMBDA_ZIP_PATH="dist/$(basename "$PWD").zip"
LAMBDA_ZIP=terraform/$LAMBDA_ZIP_PATH
TRUSTED_CIDRS='["0.0.0.0/0"]'
####################
# local development
####################
exportAPP_CONFIG_FILE=$PWD/config/development.py