mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
32 lines
818 B
Bash
32 lines
818 B
Bash
# Required variables
|
|
NOTESNOOK_API_SECRET= # This should be a randomly generated secret
|
|
|
|
# SMTP settings required for delivering emails
|
|
SMTP_USERNAME=
|
|
SMTP_PASSWORD=
|
|
SMTP_HOST=
|
|
SMTP_PORT=
|
|
NOTESNOOK_SENDER_EMAIL=
|
|
NOTESNOOK_SENDER_NAME=
|
|
SMTP_REPLYTO_NAME= # optional
|
|
SMTP_REPLYTO_EMAIL= # optional
|
|
|
|
# MessageBird is used for 2FA via SMS
|
|
MESSAGEBIRD_ACCESS_KEY=
|
|
|
|
# Server discovery settings
|
|
# The domain must be without protocol
|
|
# e.g. example.org NOT http://example.org
|
|
NOTESNOOK_SERVER_DOMAIN=
|
|
IDENTITY_SERVER_DOMAIN=
|
|
SSE_SERVER_DOMAIN=
|
|
|
|
# url of the web app instance you want to use
|
|
# e.g. http://localhost:3000
|
|
# Note: no slashes at the end
|
|
NOTESNOOK_APP_HOST=
|
|
|
|
# Minio is used for S3 storage
|
|
MINIO_ROOT_USER= # aka. AccessKeyId (must be > 3 characters)
|
|
MINIO_ROOT_PASSWORD= # aka. AccessKey (must be > 8 characters)
|