-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.envrc
44 lines (40 loc) · 2.02 KB
/
.envrc
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
37
38
39
40
41
42
43
44
#!/usr/bin/env bash
##########################################
# DO NOT MAKE LOCAL CHANGES TO THIS FILE #
# #
# Vars in this file can be overridden by #
# exporting them in .envrc.local #
##########################################
# global cloudtamer configuration
export CT_URL='https://cloudtamer.cms.gov/'
export CT_AWS_ROLE='ct-ado-managedcare-developer-admin'
export CT_IDMS='2'
# required values
export SASS_PATH='src:../../node_modules'
export VITE_APP_AUTH_MODE='LOCAL'
export VITE_APP_STAGE_NAME='local'
export VITE_APP_API_URL='http://localhost:3030/local'
export APPLICATION_ENDPOINT='http://localhost:3000'
export CF_CONFIG_IGNORED_LOCALLY='this-value-does-not-matter'
export VITE_APP_S3_LOCAL_URL='http://localhost:4569'
export VITE_APP_S3_DOCUMENTS_BUCKET='local-uploads'
export VITE_APP_S3_QA_BUCKET='local-qa'
export DATABASE_URL='postgresql://postgres:shhhsecret@localhost:5432/postgres?schema=public&connection_limit=5' # pragma: allowlist secret
export EMAILER_MODE='LOCAL'
export LD_SDK_KEY='this-value-must-be-set-in-local'
export PARAMETER_STORE_MODE='LOCAL'
export JWT_SECRET='3fd2e448ed2cec1fa46520f1b64bcb243c784f68db41ea67ef9abc45c12951d3e770162829103c439f01d2b860d06ed0da1a08895117b1ef338f1e4ed176448a' # pragma: allowlist secret
export VITE_APP_OTEL_COLLECTOR_URL='http://localhost:3030/local/otel'
export API_APP_OTEL_COLLECTOR_URL='http://localhost:4318/v1/traces'
export VITE_APP_LD_CLIENT_ID='this-value-can-be-set-in-local-if-desired'
export VITE_APP_NR_ACCOUNT_ID='this-value-is-ignored-local-but-used-in-deployed-env'
export VITE_APP_NR_TRUST_KEY='this-value-is-ignored-local-but-used-in-deployed-env'
export VITE_APP_NR_LICENSE_KEY='this-value-is-ignored-local-but-used-in-deployed-env'
export VITE_APP_NR_AGENT_ID='this-value-is-ignored-local-but-used-in-deployed-env'
# Sources a local overrides file. You can export any variables you
# need for your local setup there. Any that match variables set here
# will overwrite them.
if [ -e .envrc.local ]
then
source_env .envrc.local
fi