-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.development
55 lines (39 loc) · 1.27 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!bin/sh
# - - - - - - - - Global - - - - - - - -
# Node environments
# Example : production, development
NODE_ENV=development
APP_NAME=webapp-boilerplate
APP_URL=https://example.com
# APP_DOMAIN_NAME=example.com
X-SOURCE-MAP-TOKEN=_your_source_map_token_here_
# - - - - - - - - Sentry - - - - - - - -
SENTRY_DSN_URL=https://[email protected]/yyyyyyy
# - - - - - - - - Server - - - - - - - -
# HTTP port
# Default : 3000
PORT=3000
# Default : 3443
HTTPS_PORT=3443
# HTTPS automatic redirect from HTTP
HTTPS_REDIRECT=false
# If in PRODUCTION mode use brotli assests redirects for JS and CSS files
USE_BROTLI=true
# Winston log level, options bellow
# emerg: 0, alert: 1,
# crit: 2, error: 3, warning: 4,
# notice: 5, info: 6, debug: 7
LOG_LEVEL=debug
# - - - - - - - - Express - - - - - - - -
# Secret for `express-session`.
# Ref : https://github.com/expressjs/session#secret
SESSION_SECRET=__your-secret-goes-here__
# Development only
HTTPS_ENABLED=false
# The app will automatically prepend the path like this `../ssl/{FILE_NAME}`
SSL_CERT_FILE_NAME=localhost.crt
SSL_KEY_FILE_NAME=localhost.key
# - - - - - - - - Task runner - - - - - -
# Task runner tasks log level, pushed directly into reporter / signale
# debug, timer, info, default, warn, error
WEBSCAFFOLD_LOG_LEVEL=default