-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample.env
More file actions
41 lines (34 loc) · 814 Bytes
/
sample.env
File metadata and controls
41 lines (34 loc) · 814 Bytes
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
# Server
# ---
# type: number
# default: '3000'
#
# Set the port the server is listening on.
PORT=3000
# type: string
# default: 'localhost'
#
# Set the host name of the server.
HOST=localhost
# Database
# ---
# type: string
# default: undefined
#
# Set the database connection URL.
DATABASE_URL=postgres://postgres:example@localhost:10864/todolist
# Logger
# ---
# type: boolean
# default: 'true'
#
# Set to 'false' to disable logging.
# see: https://github.com/pinojs/pino/blob/master/docs/api.md#enabled-boolean
LOGGER_ENABLED=true
# type: string
# default: 'info'
# values: 'fatal', 'error', 'warn', 'info', 'debug', 'trace' or 'silent'.
#
# Set this property to the desired logging level.
# see: https://github.com/pinojs/pino/blob/master/docs/api.md#loggerlevel-string-gettersetter
LOGGER_LEVEL=debug