-
-
Notifications
You must be signed in to change notification settings - Fork 363
/
Copy path.env.development
31 lines (23 loc) · 951 Bytes
/
.env.development
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
# A random 32-character secret key used to encrypt user sessions
SECRET_PASSWORD=abcdef1234567890abcdef1234567890
# The base url where this instance is accessible, including the scheme.
# Example: https://example.com
NEXT_PUBLIC_BASE_URL=http://localhost:3000
# NEXTAUTH_URL should be the same as NEXT_PUBLIC_BASE_URL
NEXTAUTH_URL=http://localhost:3000
# A connection string to your Postgres database
DATABASE_URL="postgres://postgres:postgres@localhost:5450/rallly"
# A connection string to your Postgres database for direct access (used for migrations)
DIRECT_DATABASE_URL="postgres://postgres:postgres@localhost:5450/rallly"
# Required to be able to send emails
# Toggle Self-Hosted mode
NEXT_PUBLIC_SELF_HOSTED=false
# Suppress warning from sentry during local development
SENTRY_IGNORE_API_RESOLUTION_ERROR=1
# Mailhog SMTP settings
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_SECURE=false
SMTP_USER=
SMTP_PWD=