-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
29 lines (24 loc) · 1002 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
LITEFS_DIR="/litefs/data"
DATABASE_PATH="./prisma/data.db"
DATABASE_URL="file:./data.db?connection_limit=1"
CACHE_DATABASE_PATH="./other/cache.db"
SESSION_SECRET="super-duper-s3cret"
HONEYPOT_SECRET="super-duper-s3cret"
RESEND_API_KEY="re_blAh_blaHBlaHblahBLAhBlAh"
METABASE_BOT_PASSWORD="super-duper-s3cret"
SENTRY_DSN="your-dsn"
# this is set to a random value in the Dockerfile
INTERNAL_COMMAND_TOKEN="some-made-up-token"
# the mocks and some code rely on these two being prefixed with "MOCK_"
# if they aren't then the real github api will be attempted
GITHUB_CLIENT_ID="MOCK_GITHUB_CLIENT_ID"
GITHUB_CLIENT_SECRET="MOCK_GITHUB_CLIENT_SECRET"
GITHUB_TOKEN="MOCK_GITHUB_TOKEN"
# set this to false to prevent search engines from indexing the website
# default to allow indexing for seo safety
ALLOW_INDEXING="true"
STORAGE_ACCESS_KEY="<access key ID>"
STORAGE_SECRET="<secret key>"
STORAGE_BUCKET="<s3 bucket name>"
STORAGE_REGION="<s3 bucket region>"
TMDB_ACCESS_TOKEN="MOCK_TMDB_ACCESS_TOKEN"