mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# REQUIRED CONFIG
|
|
|
|
# A random 32-character secret key used to encrypt user sessions
|
|
SECRET_PASSWORD=
|
|
# The base url where this instance is accessible, including the scheme.
|
|
# Example: https://example.com
|
|
NEXT_PUBLIC_BASE_URL=http://localhost:3000
|
|
NEXT_PUBLIC_APP_BASE_URL=http://localhost:3000
|
|
# A connection string to your Postgres database
|
|
DATABASE_URL=
|
|
|
|
# EMAIL CONFIG (required for sending emails)
|
|
|
|
# All outgoing emails will show this email as the sender's email address, which also serves as the support email.
|
|
SUPPORT_EMAIL=
|
|
# The host address of your SMTP server
|
|
SMTP_HOST=localhost
|
|
# The port of your SMTP server
|
|
SMTP_PORT=25
|
|
# Set to "true" if SSL is enabled for your SMTP connection
|
|
SMTP_SECURE=false
|
|
# The username (if auth is enabled on your SMTP server)
|
|
SMTP_USER=
|
|
# The password (if auth is enabled on your SMTP server)
|
|
SMTP_PWD=
|
|
|
|
# OPTIONAL CONFIG
|
|
|
|
# Comma separated list of email addresses that are allowed to register and login.
|
|
# You can use wildcard syntax to match a range of email addresses.
|
|
# Example: "john@example.com,jane@example.com" or "*@example.com"
|
|
ALLOWED_EMAILS=
|
|
|