20 lines
340 B
YAML
20 lines
340 B
YAML
Default: &defaults
|
|
host: "*4" # any IPv4 host
|
|
port: 3000
|
|
approot: "http://localhost:3000"
|
|
copyright: Insert copyright statement here
|
|
#enter only True or False
|
|
signupBlocked: False
|
|
|
|
Development:
|
|
<<: *defaults
|
|
|
|
Testing:
|
|
<<: *defaults
|
|
|
|
Staging:
|
|
<<: *defaults
|
|
|
|
Production:
|
|
#approot: "http://www.example.com"
|
|
<<: *defaults
|