-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
26 lines (19 loc) · 850 Bytes
/
.env.example
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
# Since the ".env" file is gitignored, you can use the ".env.example" file to
# build a new ".env" file when you clone the repo. Keep this file up-to-date
# when you add new variables to `.env`.
# This file will be committed to version control, so make sure not to have any
# secrets in it. If you are cloning this repo, create a copy of this file named
# ".env" and populate it with your secrets.
# When adding additional environment variables, the schema in "/app/.server/utils/env.ts"
# should be updated accordingly.
# Databse
DATABASE_URL="postgres://pugform:[email protected]:54323/pugform"
# SMTP
SMTP_HOST="127.0.0.1"
SMTP_PORT=1025
SMTP_USERNAME="pugform"
SMTP_PASSWORD="password"
SESSION_SECRET="super-duper-s3cret"
HONEYPOT_SECRET="super-duper-s3cret"
INTERNAL_COMMAND_TOKEN="super-duper-s3cret"
ENCRYPTION_KEY="super-duper-s3cret"