-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
37 lines (29 loc) · 979 Bytes
/
.env.example
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
# TODO this is prob out of date
# watch out for quotes in environment vars when using docker containers, this will cause issues!
# do NOT use `127.0.0.1` for the host, remix will get angry
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/nlpquery
REDIS_URL=redis://localhost:6379/0
TEST_REDIS_URL=redis://localhost:6379/1
# This level will override anything you specify in your shell
LOG_LEVEL=DEBUG
SENTRY_DSN=
# == Node
SESSION_SECRET="super-duper-s3cret"
PYTHON_SERVER="http://127.0.0.1:5000"
# == Node Development
MOCKED_QUESTION_RESPONSE=true
NODE_ENV=development
# == Python
OPENAI_KEY=""
SECRET_KEY="7f2cdfaa-3845-48ca-a69f-f18b4572b3ef"
PYTHON_ENV=development
# == Development Python
PYTHON_RICH_STACKTRACE=true
PYTHON_LOG_PATH=
# TODO remove in the future once we have sources built into the app
SNOWFLAKE_ACCOUNT=
SNOWFLAKE_USER=
SNOWFLAKE_PASSWORD=
SNOWFLAKE_DATABASE="DAYSPRINGPENS"
SNOWFLAKE_SCHEMA="SHOPIFY_SCHEMA"
SNOWFLAKE_WAREHOUSE="COMPUTE_WH"