-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
36 lines (27 loc) · 925 Bytes
/
.env.sample
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
30
31
32
33
34
35
36
# docker-compose .env file + bash environment variables.
# used by cloudformation/deploy.sh and docker-compose.yml
# REQUIRED envs vars
PROJECT_NAME=nasa-apt-api
STAGE=dev
API_VERSION_STRING=v0.1
OWNER=byblos
VPC_ID= # TODO Instead of hardcoding, find the VPC by name in the app file
# S3_BUCKET=TODO
# stackname will be used cloudformation/deploy.sh, modifying will create a new stack
STACKNAME=nasa-apt-dev
# Account credentials that CDK will use when deploying
CDK_DEFAULT_ACCOUNT=
CDK_DEFAULT_REGION=us-east-1
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
# Frontend Url used to set CORS origin for FastAPI
APT_FRONTEND_URL=
# or for local development use
# APT_FRONTEND_URL=http://localhost:9000
# s3 endpoint (for local dev environment)
S3_ENDPOINT=http://localstack:4566
# url and port for opensearch
OPENSEARCH_URL=opensearch:9200
# url for FastApi
FASTAPI_HOST=http://localhost:8000