1# Usage: cp example.env .env
2# change the values as necessary
3
4# port on to which the app binds to
5PORT=3000
6
7# look in config/session.js
8SESSION_SECRET=mySessionSecret
9
10# can be development, test, production
11NODE_ENV=development
12
13# comment out or remove this one after your first user has been created
14FIRST_RUN=1
15
16# use https://github.com/LukeSmithxyz/emailwiz to setup a mail server
17SMTP_USERNAME=
18SMTP_PASSWORD=
19SMTP_PORT=
20SMTP_HOST=
21
22SITE_NAME="daforums"