11# We try to mock as much as possible so you don't have to have these set to anything real to contribute
2+
23# We also only use these variables when you're trying to use the APIs that need them (lazy initialization)
4+
35# If you need to work on the feature that uses the API, it must be set.
46# If it's mocked in development, then you can set its value to nonsense.
57# We'll label them by what feature you need them for and whether it's mocked.
68
79SENTRY_DSN = " https://[email protected] /5878963" 10+
811SENTRY_AUTH_TOKEN = some_token
912SENTRY_ORG = some_org
1013SENTRY_PROJECT = some_project
@@ -13,6 +16,7 @@ SENTRY_PROJECT_ID=5878963
1316# Feature: /contact and /login
1417# Mocked: yes
1518# Check the logs which print out the content of every "email" sent for any manual verification you need to do or links you need to open
19+
1620MAILGUN_SENDING_KEY = key-some-mailgun-key
1721MAILGUN_DOMAIN = some.domain.com
1822
@@ -27,13 +31,14 @@ TITO_API_SECRET=secret_live_some_long_thing
2731# Feature: authentication
2832# Mocked: Unnecessary (any value can be used)
2933# Technically we have a fallback in development so this doesn't even need to be set
34+
3035SESSION_SECRET = anything_works_here
3136MAGIC_LINK_SECRET = whatever_stuff
3237
3338# Feature: basically everything
3439# Mocked: No, must run sqlite locally
3540DATABASE_FILENAME = " sqlite.db"
36- DATABASE_URL = " file:./sqlite.db?connection_limit=1 "
41+ DATABASE_URL = " file:./prisma/ sqlite.db"
3742CACHE_DATABASE_PATH = " other/cache.db"
3843LITEFS_DIR = " ./prisma"
3944
@@ -91,4 +96,4 @@ REFRESH_CACHE_SECRET=really_whatever
9196VERIFIER_API_KEY = some_api_key
9297
9398# Feature: Cloudflare OAuth
94- CF_INTERNAL_SECRET = some_long_random_string
99+ CF_INTERNAL_SECRET = some_long_random_string
0 commit comments