-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
40 lines (36 loc) · 1.15 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
40
#? Rename or copy this file to ".env" and set the variables there.
#?
#?####################
#? VARIABLE STRUCTURE:
#?####################
#? [ default ] : type < min - max >
#? ^ ^ ^
#? | | |
#? | | +---- RANGE between two values (these included)
#? | +-------------- TYPE of the variable
#? +------------------------ DEFAULT value applied if not set
#?
#?###################
#? COMMENT STRUCTURE:
#?###################
#? "#?#..." or "###..." are used to comment a section line.
#? "#?" is used to comment a help line.
#? "##" is used to comment a description line.
#? "#" is used to comment a variable line.
#?
#? You should remove the comment on variable lines only if you want to set the variable.
##########
## SERVER:
##########
## Set log verbosity [3]:integer
#? (0=none <- 1=error <- 2=warn <- 3=info <- 4=debug)
#LOGLEVEL=3
## Port for the server [4000]:integer
#PORT=4000
## Is website served over HTTPS? [true]:boolean
#TLS=true
############
## DOCUMENT:
############
## Maximum document size in kilobytes [1024]:integer
#DOCUMENT_MAXSIZE=1024