2023-08-02 05:40:17 +03:00
|
|
|
# Use this for local setup
|
2023-11-19 20:25:47 +03:00
|
|
|
PG_DATABASE_URL=postgres://twenty:twenty@localhost:5432/default
|
2023-08-02 05:40:17 +03:00
|
|
|
# Use this for docker setup
|
2023-12-11 15:36:24 +03:00
|
|
|
# PG_DATABASE_URL=postgres://twenty:twenty@postgres:5432/default
|
2023-08-02 05:40:17 +03:00
|
|
|
|
|
|
|
FRONT_BASE_URL=http://localhost:3001
|
2023-10-19 12:07:40 +03:00
|
|
|
ACCESS_TOKEN_SECRET=replace_me_with_a_random_string_access
|
|
|
|
LOGIN_TOKEN_SECRET=replace_me_with_a_random_string_login
|
|
|
|
REFRESH_TOKEN_SECRET=replace_me_with_a_random_string_refresh
|
2023-08-01 05:20:11 +03:00
|
|
|
SIGN_IN_PREFILLED=true
|
2023-07-21 08:59:03 +03:00
|
|
|
|
2023-08-01 00:36:04 +03:00
|
|
|
# ———————— Optional ————————
|
2023-09-10 03:59:56 +03:00
|
|
|
# PORT=3000
|
2023-08-01 00:36:04 +03:00
|
|
|
# DEBUG_MODE=true
|
|
|
|
# ACCESS_TOKEN_EXPIRES_IN=30m
|
|
|
|
# LOGIN_TOKEN_EXPIRES_IN=15m
|
2023-10-26 12:32:44 +03:00
|
|
|
# API_TOKEN_EXPIRES_IN=1000y
|
2023-08-01 00:36:04 +03:00
|
|
|
# REFRESH_TOKEN_EXPIRES_IN=90d
|
|
|
|
# FRONT_AUTH_CALLBACK_URL=http://localhost:3001/verify
|
|
|
|
# AUTH_GOOGLE_ENABLED=false
|
2023-12-08 15:13:56 +03:00
|
|
|
# MESSAGING_PROVIDER_GMAIL_ENABLED=false
|
2023-12-14 14:39:22 +03:00
|
|
|
# IS_BILLING_ENABLED=false
|
|
|
|
# BILLING_PLAN_REQUIRED_LINK=https://twenty.com/stripe-redirection
|
2024-01-11 13:48:14 +03:00
|
|
|
# IS_SIGN_UP_DISABLED=false
|
2023-12-08 15:13:56 +03:00
|
|
|
# AUTH_GOOGLE_CLIENT_ID=replace_me_with_google_client_id
|
|
|
|
# AUTH_GOOGLE_CLIENT_SECRET=replace_me_with_google_client_secret
|
|
|
|
# AUTH_GOOGLE_CALLBACK_URL=http://localhost:3000/auth/google/redirect
|
|
|
|
# MESSAGING_PROVIDER_GMAIL_CALLBACK_URL=http://localhost:3000/auth/google-gmail/get-access-token
|
2023-08-01 00:36:04 +03:00
|
|
|
# STORAGE_TYPE=local
|
2023-08-05 02:52:59 +03:00
|
|
|
# STORAGE_LOCAL_PATH=.local-storage
|
|
|
|
# SUPPORT_DRIVER=front
|
2023-08-05 05:22:54 +03:00
|
|
|
# SUPPORT_FRONT_HMAC_KEY=replace_me_with_front_chat_verification_secret
|
|
|
|
# SUPPORT_FRONT_CHAT_ID=replace_me_with_front_chat_id
|
2023-09-12 01:07:30 +03:00
|
|
|
# LOGGER_DRIVER=console
|
2023-12-08 12:18:50 +03:00
|
|
|
# EXCEPTION_HANDLER_DRIVER=sentry
|
2023-09-11 22:22:30 +03:00
|
|
|
# SENTRY_DSN=https://xxx@xxx.ingest.sentry.io/xxx
|
2024-01-13 14:03:41 +03:00
|
|
|
# LOG_LEVELS=error,warn
|
2023-12-01 18:09:04 +03:00
|
|
|
# MESSAGE_QUEUE_TYPE=pg-boss
|
|
|
|
# REDIS_HOST=127.0.0.1
|
2023-12-01 18:26:39 +03:00
|
|
|
# REDIS_PORT=6379
|
2023-12-02 20:37:45 +03:00
|
|
|
# DEMO_WORKSPACE_IDS=REPLACE_ME_WITH_A_RANDOM_UUID
|
2023-12-07 14:32:29 +03:00
|
|
|
# SERVER_URL=http://localhost:3000
|
2024-01-13 14:03:41 +03:00
|
|
|
# WORKSPACE_INACTIVE_DAYS_BEFORE_NOTIFICATION=30
|
|
|
|
# WORKSPACE_INACTIVE_DAYS_BEFORE_DELETION=60
|
2024-01-08 12:42:03 +03:00
|
|
|
# Email Server Settings, see this doc for more info: https://docs.twenty.com/start/self-hosting/environment-variables
|
2024-01-24 14:51:42 +03:00
|
|
|
# EMAIL_FROM_ADDRESS=contact@yourdomain.com
|
2024-01-13 14:03:41 +03:00
|
|
|
# EMAIL_SYSTEM_ADDRESS=system@yourdomain.com
|
|
|
|
# EMAIL_FROM_NAME='John from YourDomain'
|
2024-01-05 18:08:19 +03:00
|
|
|
# EMAIL_DRIVER=logger
|
|
|
|
# EMAIL_SMTP_HOST=
|
|
|
|
# EMAIL_SMTP_PORT=
|
|
|
|
# EMAIL_SMTP_USER=
|
|
|
|
# EMAIL_SMTP_PASSWORD=
|