-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.test
118 lines (98 loc) · 1.8 KB
/
.env.test
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#
# APPLICATION
#
APP_NAME="express-typescript-boilerplate"
APP_ROUTE="http://localhost:3000"
APP_ROUTE_PREFIX="/api"
APP_BANNER=false
APP_VALID_TOKEN_HOUR=24
APP_SOCKET_PORT=9000
APP_PORT=3030
CSV_DELIMITER=;
APP_REDIS_KEY_TIMEOUT=86400; # second
#
# LOGGING
#
LOG_LEVEL="debug"
LOG_JSON=false
LOG_OUTPUT="dev"
#
# AUTHORIZATION
#
AUTH_ROUTE="http://localhost:3333/tokeninfo"
#
# DATABASE
#
DB_TYPE="mysql"
DB_HOST="localhost"
DB_PORT=3306
DB_USERNAME="root"
DB_PASSWORD=""
DB_DATABASE="easycontact_ens"
DB_SYNCHRONIZE=false
DB_LOGGING=false
# DB_TYPE="sqlite"
# DB_DATABASE="./mydb.sql"
# DB_LOGGING=false
#
# GraphQL
#
GRAPHQL_ENABLED=true
GRAPHQL_ROUTE="/graphql"
#
# Swagger
#
SWAGGER_ENABLED=true
SWAGGER_ROUTE="/swagger"
SWAGGER_FILE="api/swagger.json"
SWAGGER_USERNAME="admin"
SWAGGER_PASSWORD="1234"
#
# Status Monitor
#
MONITOR_ENABLED=true
MONITOR_ROUTE="/monitor"
MONITOR_USERNAME="admin"
MONITOR_PASSWORD="1234"
#
# Sms service
#
SMS_URL="http://fastinfo.ilvillage.it:8080/fastinfo/webservices/web-send.jsp"
SMS_ID="241"
SMS_KEY="7F63254375581EB7BB4A"
SMS_SENDER="3202043207"
#
# Autoresponder
#
AUTORESPONDER_SERVICE_AVAILABLE = "Richiesta presa in carico, ti risponderamo il prima possibile"
AUTORESPONDER_SERVICE_UNAVAILABLE = "Il servizio non è disponibile perchè fuori orario"
#
# Email
#
EMAIL_SENDER="mario.gualtieri@3punto6.it"
EMAIL_SUBJECT="Comunicaens - Richiesta"
SMTP_HOST="mx3601.3punto6.com"
SMTP_PORT="465"
SMTP_SECURE="true"
SMTP_AUTH_USER="mario.gualtieri@3punto6.it"
SMTP_AUTH_PASS="C@V@11a5orCu#dd"
#
# Redis
#
REDIS_PORT="6379"
REDIS_HOST="localhost"
#
# SocketIO
#
SOCKETIO_PORT=9000
SOCKETIO_ENABLED=true
SOCKETIO_ROUTE=http://localhost
SOCKETIO_PATH=wss
#
# FrontOffice
#
FRONT_OFFICE_URL="https://client.3punto6.com/"
#
# BackOffice
#
BACK_OFFICE_URL="https://ensttms.3punto6.com/"