* feat: wip onboarding * fix: generate graphql front * wip: onboarding * feat: login/register and edit profile * fix: unused import * fix: test * Use DEBUG_MODE instead of STAGE and mute typescript depth exceed errors * Fix seeds * Fix onboarding when coming from google * Fix * Fix lint * Fix ci * Fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
13 lines
444 B
Plaintext
13 lines
444 B
Plaintext
DEBUG_MODE=false
|
|
AUTH_GOOGLE_ENABLED=false
|
|
ACCESS_TOKEN_SECRET=secret_jwt
|
|
ACCESS_TOKEN_EXPIRES_IN=5m
|
|
LOGIN_TOKEN_SECRET=secret_login_token
|
|
LOGIN_TOKEN_EXPIRES_IN=15m
|
|
REFRESH_TOKEN_SECRET=secret_refresh_token
|
|
REFRESH_TOKEN_EXPIRES_IN=90d
|
|
PG_DATABASE_URL=postgres://postgres:postgrespassword@postgres:5432/default?connection_limit=1
|
|
FRONT_AUTH_CALLBACK_URL=http://localhost:3001/auth/callback
|
|
STORAGE_TYPE=local
|
|
STORAGE_LOCAL_PATH=.local-storage
|