forked from DentallApp/back-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
94 lines (85 loc) · 1.99 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
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
#
# General settings
#
ASPNETCORE_ENVIRONMENT=Development
FRONTEND_APP_BASE_URL=http://localhost:80/
MAX_DAYS_IN_CALENDAR=60
BUSINESS_NAME=World Dental CO
DENTAL_SERVICES_IMAGES_PATH=/app/dental_services
LANGUAGE=es
PLUGINS="
Plugin.ChatBot.dll
Plugin.AppointmentReminders.dll
"
#
# Database settings
#
DB_HOST=mariadb
DB_PORT=3306
DB_USERNAME=root
DB_PASSWORD=123456789
DB_DATABASE=dentallapp_db
# The maximum number of retry attempts.
DB_MAX_RETRY_COUNT=10
# The maximum delay between retries.
# Expressed in seconds.
DB_MAX_RETRY_DELAY=30
#
# Access-Token settings
#
ACCESS_TOKEN_KEY=9ee19252-906e-4b70-9ce7-16563341747e
# Expressed in minutes.
ACCESS_TOKEN_EXPIRES=10
# Expressed in days.
REFRESH_TOKEN_EXPIRES=7
#
# Email Verification settings
#
EMAIL_VERIFICATION_TOKEN_KEY=b52e0db0-88dd-45ce-b079-64b9f305506c
# Expressed in hours.
EMAIL_VERIFICATION_TOKEN_EXPIRES=2
EMAIL_VERIFICATION_URL=${FRONTEND_APP_BASE_URL}verificacion-correo
#
# Password Reset settings
#
# Expressed in hours.
PASSWORD_RESET_TOKEN_EXPIRES=1
PASSWORD_RESET_URL=${FRONTEND_APP_BASE_URL}resetear-contrasena
#
# SendGrid settings
#
# For security reasons, not show this key in the code.
SENDGRID_API_KEY=YOUR_API_KEY_SENDGRID
SENDGRID_FROM_EMAIL=dentallapp.net@hotmail.com
SENDGRID_FROM_NAME=DentallApp
#
# Twilio settings
#
TWILIO_ACCOUNT_SID=YOUR_ACCOUNT_SID
TWILIO_AUTH_TOKEN=YOUR_AUTH_TOKEN
# From which number to send messages.
TWILIO_FROM_NUMBER=YOUR_NUMBER
# Value used by libphonenumber-csharp.
TWILIO_REGION_CODE=EC
#
# Reminder settings
#
# Expressed in days.
REMINDER_TIME_IN_ADVANCE=1
# Indicates the schedule at which the reminder will be sent.
# The schedule must be a cron expression.
REMINDER_CRON_EXPR=0 0 8 * * ? * # At 08:00:00am every day.
#
# Bot credentials
#
MICROSOFT_APP_TYPE=
MICROSOFT_APP_ID=
MICROSOFT_APP_PASSWORD=
MICROSOFT_APP_TENANT_ID=
#
# Direct Line settings
#
DIRECT_LINE_SECRET=
# In production this base URL should be used:
# https://directline.botframework.com
DIRECT_LINE_BASE_URL=http://indirectline:3000/