|
1 | 1 | ENGINE_URL=http://{DOCKER_CONTAINER_NAME:PORT}/api/v1 # example: http://engine/api/v1 (port 80 by default)
|
2 |
| -MONGODB_DB_NAME= |
3 |
| -MONGODB_URI= |
| 2 | +MONGODB_DB_NAME=dataherald |
| 3 | +MONGODB_URI=mongodb://admin:admin@mongodb:27017 |
| 4 | + |
| 5 | +#The encryption key should be the same as the one used in engine |
| 6 | +ENCRYPT_KEY= |
4 | 7 |
|
5 | 8 | AUTH0_DOMAIN='{yourDomain}'
|
6 |
| -AUTH0_ISSUER='{yourIssuer}' |
| 9 | +AUTH0_ISSUER='https://{yourDomain}/' |
7 | 10 | AUTH0_API_AUDIENCE='{yourAudience}'
|
| 11 | +# AUTH0_DISABLED creates a mock authentication token type for testing purposes |
| 12 | +# you can provide an email as the bearer token, note that the admin console will not be able to authenticate |
8 | 13 | AUTH0_DISABED=False
|
9 | 14 |
|
| 15 | +# The salt is used to hash the API key, use the string from ENCRYPT_KEY or create a different one |
10 | 16 | API_KEY_SALT=
|
11 | 17 |
|
12 | 18 | DEFAULT_ENGINE_TIMEOUT=120
|
13 | 19 |
|
| 20 | +# Used to store credential files for database connections |
| 21 | +# should be the same as the ones in engine |
14 | 22 | S3_AWS_ACCESS_KEY_ID=
|
15 | 23 | S3_AWS_SECRET_ACCESS_KEY=
|
16 | 24 |
|
17 |
| -#The encryption key should be the same as the one used in engine |
18 |
| -ENCRYPT_KEY = |
19 | 25 |
|
| 26 | +# Optional posthog analytics if disabled |
| 27 | +POSTHOG_DISABLED=True |
20 | 28 | POSTHOG_API_KEY=
|
21 | 29 | POSTHOG_HOST=
|
22 |
| -POSTHOG_DISABLED=True |
23 | 30 |
|
24 |
| -# To set the SSH key file |
| 31 | + |
| 32 | + |
| 33 | +# Optional ssh credentials if connecting to a remote database using ssh tunnel |
25 | 34 | SSH_PRIVATE_KEY_PASSWORD=
|
26 | 35 | SSH_PATH_TO_CREDENTIAL_FILE=
|
27 | 36 |
|
| 37 | +# Optional stripe env vars if organizations are not on ENTERPRISE plan |
28 | 38 | STRIPE_API_KEY=
|
29 | 39 | STRIPE_WEBHOOK_SECRET=
|
30 |
| -SQL_GENERATION_PRICE_ID=#optional |
31 |
| -FINETUNING_GPT_35_PRICE_ID=#optional |
32 |
| -FINETUNING_GPT_4_PRICE_ID=#optional |
33 |
| -DEFAULT_SPENDING_LIMIT=#optional |
34 |
| -SINGUP_CREDITS=#optional |
35 |
| -SQL_GENERATION_COST=#optional |
36 |
| -FINETUNING_GPT_35_COST=#optional |
37 |
| -FINETUNING_GPT_4_COST=#optional |
| 40 | +SQL_GENERATION_PRICE_ID= |
| 41 | +FINETUNING_GPT_35_PRICE_ID= |
| 42 | +FINETUNING_GPT_4_PRICE_ID= |
| 43 | +DEFAULT_SPENDING_LIMIT= |
| 44 | +SINGUP_CREDITS= |
| 45 | +SQL_GENERATION_COST= |
| 46 | +FINETUNING_GPT_35_COST= |
| 47 | +FINETUNING_GPT_4_COST= |
0 commit comments