-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.env.githubci
More file actions
75 lines (63 loc) · 2.25 KB
/
.env.githubci
File metadata and controls
75 lines (63 loc) · 2.25 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# TODO: Docker Compose is set up to use this single file for running multiple
# services/tasks, including the migrations, api server, and the models service.
# That makes it tricky if different serivces need environment variables with the
# same name, or if each service names its env vars in a way that make sense
# within the context of that service, but becomes ambiguous when they're all
# squished together here. That's what's going on with these unprefixed DATABASE_
# variables, which the API server expects in order to run the tests correctly.
DATABASE_HOST=postgres
DATABASE_READ_ONLY_HOST=postgres
DATABASE_PORT=5432
DATABASE_NAME=postgres
DATABASE_USER=postgres
DATABASE_PASSWORD=postgres123
# Meanwhile, the API_SERVER_ and MODELS_SERVICE_ env vars are used by the
# migrator service.
API_SERVER_DATABASE_HOST=postgres
API_SERVER_DATABASE_READ_ONLY_HOST=postgres
API_SERVER_DATABASE_PORT=5432
API_SERVER_DATABASE_NAME=postgres
API_SERVER_DATABASE_USER=postgres
API_SERVER_DATABASE_PASSWORD=postgres123
# These credentials must be available in the environment for us to be able to
# generate real predictions.
# MODELS_SERVICE_OPENAI_API_KEY=
# AWS_DEFAULT_REGION=
# AWS_ACCESS_KEY_ID=
# AWS_SECRET_ACCESS_KEY=
SESSION_SECRET=some_long_secret_string
CLICKHOUSE_PROTOCOL=http
CLICKHOUSE_HOST=clickhouse
CLICKHOUSE_PORT=8123
CLICKHOUSE_USERNAME=default
CLICKHOUSE_PASSWORD=clickhouse
CLICKHOUSE_DATABASE=analytics
CLICKHOUSE_MIGRATIONS_TABLE=MIGRATIONS_METADATA
SCYLLA_USERNAME=cassandra
SCYLLA_PASSWORD=cassandra
SCYLLA_HOSTS='scylla'
SCYLLA_LOCAL_DATACENTER='datacenter1'
SCYLLA_KEYSPACE='item_investigation_service'
SCYLLA_REPLICATION_CLASS='SimpleStrategy'
SCYLLA_REPLICATION_FACTOR='1'
SCYLLA_COMPACTION_STRATEGY='SizeTieredCompactionStrategy'
SCYLLA_HAS_ENTERPRISE_FEATURES='false'
GRAPHQL_MAX_DEPTH=10
EXPOSE_SENSITIVE_IMPLEMENTATION_DETAILS_IN_ERRORS=true
ALLOW_USER_INPUT_LOCALHOST_URIS=true
SEQUELIZE_PRINT_LOGS=true
GROQ_SECRET_KEY=
# Other API Keys
SENDGRID_API_KEY=
GOOGLE_PLACES_API_KEY=
READ_ME_JWT_SECRET=
LAUNCHDARKLY_SECRET=
OPEN_AI_API_KEY=
GRAPHQL_OPAQUE_SCALAR_SECRET=some_long_secret_string
REDIS_USE_CLUSTER=false
REDIS_HOST=redis
REDIS_PORT=6379
OTEL_SERVICE_NAME=COOP_TEST_SERVICE
NODE_ENV=CI
ITEM_QUEUE_TRAFFIC_PERCENTAGE='0'
UI_URL=https://getcoop.com