forked from lukevella/rallly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.env
33 lines (27 loc) · 1.07 KB
/
sample.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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=https://localhost:3000
NEXT_PUBLIC_APP_BASE_URL=https://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: "[email protected],[email protected]" or "*@example.com"
ALLOWED_EMAILS=