-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy path.env
More file actions
27 lines (22 loc) · 750 Bytes
/
.env
File metadata and controls
27 lines (22 loc) · 750 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
26
27
# Tag to use when building and pushing image to Dockerhub
BUILD_VERSION='scratch'
# Tag to use when pulling images and running
PULL_VERSION='0.0.7'
# URL to access the web app at. Used for CORS
WEBSITE_DOMAIN='http://localhost:80'
# URL for react web app to call backend
REACT_APP_API_DOMAIN='http://localhost:80'
# URL for backend to call cartography
CARTOGRAPHY_URI='http://cartography:6000'
# URL for backend and cartography to call neo4j database
NEO4J_URI='bolt://neo4j:7687'
MODE='Prod'
AWS_DIRECTORY='~/.aws'
# Postgres
POSTGRES_USER='postgres'
POSTGRES_PASSWORD='postgres'
POSTGRES_DB='zeuscloud'
# Posthog
POSTHOG_API_KEY='phc_kOuX9XwS27KWteSzJIZByRnxtsuF1rLBgBqtVYSXQdm'
POSTHOG_HOST='https://app.posthog.com'
TELEMETRY_ENABLED='true'