You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 16, 2024. It is now read-only.
DATABASE_URL=The MongoDB connection string for your development database (if localhost, use 127.0.0.1)
JWT_AUTH_KEY=A long, unguessable string used to secure JWTs
GENERAL_VERIFICATION_KEY=As above, but for verifying emails (also used for password resets)
STRINGIFIED_NODEMAILER_OPTIONS_JSON=A stringified JSON object used to configure a Nodemailer transport, usually something like {"host":"smtp.example.com","port":587,"secure":true,"auth":{"user":"username","pass":"password"}}
SENDER_EMAIL=The email address to send emails from (likely the one specified in the above variable)
REFRESH_TOKEN_CLEANUP_1_DAYS=How old in days a user's particular refresh token should be before deletion upon a new login from the same ip+user-agent; recommended is 30.44
REFRESH_TOKEN_CLEANUP_2_DAYS=How old in days a user's particular refresh token should be before deletion upon a new login from any ip+user-agent; recommended is 365.2425
ACCESS_TOKEN_DURATION_MINUTES=How long in minutes an access token should last; recommended is 5
OTP_DURATION_MINUTES=How long, in minutes, a code sent to verify a user's email (or reset their password) should last before expiring