mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-22 08:28:35 +00:00
* setup sentry for server * setup sentry for client * update docs for sentry dns * explicitly specify apm vendor * add module for sentry * revise directory struct and make sentry debuggable * setup csp and trace headers for sentry * whitelist csp for all sentry urls * change senrty error sample rate to 50% * make sentry send all errors from backend
34 lines
840 B
Text
34 lines
840 B
Text
# Create .env from this example file and replace values for the environment.
|
|
# The application expects a separate .env.test for test environment configuration
|
|
|
|
TOOLJET_HOST=http://localhost:8082
|
|
LOCKBOX_MASTER_KEY=0000000000000000000000000000000000000000000000000000000000000000
|
|
SECRET_KEY_BASE=replace_with_secret_key_base
|
|
|
|
# DATABASE CONFIG
|
|
ORM_LOGGING=
|
|
PG_DB=<db name>
|
|
PG_USER=<db username>
|
|
PG_HOST=<db host>
|
|
PG_PASS=<db password>
|
|
|
|
# Checks every 24 hours to see if a new version of ToolJet is available
|
|
CHECK_FOR_UPDATES=check_if_updates_are_available
|
|
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
|
|
# EMAIL CONFIGURATION
|
|
DEFAULT_FROM_EMAIL=hello@tooljet.io
|
|
SMTP_USERNAME=
|
|
SMTP_PASSWORD=
|
|
SMTP_DOMAIN=
|
|
SMTP_ADDRESS=
|
|
|
|
# DISABLE USER SIGNUPS (true or false). Default: true
|
|
DISABLE_SIGNUPS=
|
|
|
|
# OBSERVABILITY
|
|
APM_VENDOR=
|
|
SENTRY_DNS=
|
|
SENTRY_DEBUG=
|