-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample-.env-file.txt
76 lines (60 loc) · 1.25 KB
/
example-.env-file.txt
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#### Timetracker app setup
# To set up the "Timetracker" app,
# - Install postgresql & edit "DB_CONNECTION" below
# - Create a google developer account, get your google maps API key
# & edit "GMAPS_API" below
####
NODE_ENV=development
APP_API_BASE_URL=localhost:3000
# Postgres
DB_CLIENT=postgresql
DB_CONNECTION=postgres://localhost/<db_name_goes_here>
# Knex
# Knex
# DB_POOL_MIN=0
# DB_POOL_MAX=7
# DB_MIGRATION_TABLE=version
DB_MIGRATION_DIR=./db/migrations
DB_SEEDS_DIR=./db/seeds
GMAPS_API=<gmaps_api_key_goes_here>
#########################
# Below is are some example .env file settings
# source: https://github.com/yehjunying/express-typescript-boilerplate/blob/master/.env.example
#
# APP_NAME=express-timetracker
# APP_ENV=local
# APP_HOST=http://localhost
# APP_URL_PREFIX=
# APP_PORT=3000
#
# LOGGING
#
# LOG_LEVEL=debug
# OG_ADAPTER=winston
#
# API Info
#
#API_INFO_ENABLED=true
#API_INFO_ROUTE=/info
#
# Swagger Documentation
#
# SWAGGER_ENABLED=true
# SWAGGER_ROUTE=/docs
# SWAGGER_FILE=/src/api/swagger.json
#
# Monitor
#
MONITOR_ENABLED=true
MONITOR_ROUTE=/status
#
# DATABASE
#
# MySql
#DB_CLIENT=mysql
#DB_CONNECTION=mysql://root@localhost:3306/my_database
#
# Auth0
#
# AUTH0_HOST=https://w3tecch.auth0.com
#AUTH0_HOST=http://localhost:3333