-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.envrc.tmpl
32 lines (28 loc) · 1.12 KB
/
.envrc.tmpl
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
export ENV="local"
export PORT="8080"
export MIN_LOG_SEVERITY="DEBUG"
export DB_HOST="tcp(localhost:3306)"
export DB_USER="root"
export DB_PASSWORD="password"
export DB_DATABASE="maindb"
export REDIS_HOST="localhost"
export REDIS_PORT="6379"
export REDIS_PASSWORD="password"
export REDIS_TLS_ENABLE=false
export GCP_PROJECT_ID="sample"
export FIREBASE_CLIENT_API_KEY="sample"
export GOOGLE_APPLICATION_CREDENTIALS="./secret/service_account.json"
export GCP_BUCKET_NAME="sample-bucket-name"
export AWS_ACCESS_KEY_ID="test"
export AWS_SECRET_ACCESS_KEY="test"
export AWS_REGION="ap-northeast-1"
export AWS_EMULATOR_HOST="localhost:4566"
export AWS_COGNITO_EMULATOR_HOST="http://localhost:9229"
export AWS_BUCKET_NAME="local-asset-bucket"
export AWS_COGNITO_STAFF_USER_POOL_ID="please_fill_id_by_created_make_init.local.cognito"
export AWS_COGNITO_STAFF_CLIENT_ID="please_fill_id_by_created_make_init.local.cognito"
export SPANNER_PROJECT_ID="test-project"
export SPANNER_INSTANCE_ID="test-instance"
export SPANNER_DATABASE_ID="test-database"
export SPANNER_EMULATOR_HOST="localhost:9010"
export SPANNER_EMULATOR_URL="http://localhost:9020/"