-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
39 lines (33 loc) · 1.44 KB
/
.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
27
28
29
30
31
32
33
34
35
36
37
38
39
LDAP_URL="ldap://ldap.example:389"
LDAP_SEARCH_BASE="ou=People,dc=sccs,dc=swarthmore,dc=edu"
LDAP_SEARCH_BASE_GROUP="ou=Group,dc=sccs,dc=swarthmore,dc=edu"
LDAP_ADMIN_GROUP="cool-groupd"
LDAP_BIND_DN="cn=root,dc=example,dc=com"
LDAP_BIND_SECRET="spooky secret"
PORT=3000
SESSION_SECRET="spooky secret"
MONGO_URI="mongodb+srv://stuff"
# See https://nodemailer.com/smtp/; ignore to generate an ethereal-email account
SMTP_CONN="smtps://username:[email protected]/?pool=true";
# the public-facing URL
EXTERNAL_ADDRESS="http://localhost:3000"
ADMIN_EMAIL="[email protected]"
POST_USER_CREATE_COMMAND="/path/to/sauce/dir/scripts/setupExample.sh"
MAILMAN_URL="http://mailman:9001/3.1"
MAILMAN_USER="admin"
MAILMAN_PW="spooky secret"
USER_AGENT_URL="http://localhost:8526"
MC_AGENT_URL="http://localhost:8527"
LOCAL_AGENT_TOKEN="d56667ac-b7d4-4901-bd7d-2f7dd14e40e9"
# Analytics with Plausible. if either of these options is not set, no analytics script will be added
# domain that will be set in the data-domain attribute
PLAUSIBLE_DOMAIN="sccs.swarthmore.edu"
# server hosting the analytics script
PLAUSIBLE_SERVER="plausible.io"
# sets Express's 'trust proxy' setting. See https://expressjs.com/en/guide/behind-proxies.html
# defaults to not set
# TRUST_PROXY="uniquelocal"
# where front-page status posts are read from. optional, defaults to _posts
# POSTS_DIR='_posts/'
# where doc pages are read from. optional, defaults to _docs
# DOCS_DIR='_docs/'