-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconfig.env
42 lines (29 loc) · 1.23 KB
/
config.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
33
34
35
36
37
38
39
40
41
# REQUIRED CONFIG
# A postgres database connection string.
# Does not need to be defined if you are using the docker-compose file in this repository
# to run your database.
DATABASE_URL=postgres://postgres:postgres@rallly_db:5432/db
# 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
# 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=
# EMAIL CONFIG (required for sending emails)
# The email address that will be used to send emails. If not set, SUPPORT_EMAIL will be used instead.
# NOREPLY_EMAIL=
# The email of whoever is managing this instance in case a user needs support.
SUPPORT_EMAIL=
# The host address of your SMTP server
SMTP_HOST=
# The port of your SMTP server
SMTP_PORT=587
# Set to "true" if SSL is enabled for your SMTP connection
SMTP_SECURE=
# The username (if auth is enabled on your SMTP server)
SMTP_USER=
# The password (if auth is enabled on your SMTP server)
SMTP_PWD=