-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.example
35 lines (27 loc) · 1.01 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
# 'development' or 'production' - determines how frontend is served
NODE_ENV=development
# These options might help node handle large files (likely don't change)
NODE_OPTIONS=--max_old_space_size=4096
GENERATE_SOURCEMAP=false
# Database connection strings
DB_HOSTNAME="localhost"
DB_USERNAME="root"
DB_PASSWORD=""
DB_NAME="islandrushdb"
# Credentials to view Course Director Page
CD_SECTION="CourseDirector"
CD_LASTNAME="Smith"
CD_PASSWORDHASH="912ec803b2ce49e4a541068d495ab570"
# Session Secret used by Express
SESSION_SECRET=random_secret_goes_here
# 'loki' -> local file (session-store.db) -> best for development
# 'redis' -> Azure Redis Cache -> very popular for production
# 'azure' -> Azure Storage Tables -> suitable alternative
SESSION_TYPE=loki
# Indicates usage of socket.io-redis adapter, needed when multiple server instances are used.
REDIS_SOCKETS=false
# REDIS variables for connection to Redis cache.
REDISCACHEHOSTNAME=""
REDISCACHEKEY=""
# Connection string to Azure Storage
AZURE_STORAGE_CONNECTION_STRING=""