-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
90 lines (66 loc) · 3.27 KB
/
.env
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
# Environment Config
# store your secrets and config variables in here
# only invited collaborators will be able to see your .env values
# reference these in your code with process.env.SECRET
# Specify a port number for the webserver to run on (default 3000)
PORT=3000
# Specify a MONGO_URI to enable message history
# mLab.com has a free tier which is great for getting started
MONGO_URI=
#Luis Settings
#####################################
#Key and Endpoint settings
#Authoring Key (1'000 Transaction per month)
#SERVICEURI=https://westeurope.api.cognitive.microsoft.com/luis/v2.0/apps/11afb618-218a-466d-8c67-e8a3cad351d2?verbose=true&timezoneOffset=60&subscription-key=ef2ae7be10204fb9aa5de073b96ab971&q=
#LUIS_Chatbot_Hallo_Aargau Key (10'000 Transaction per month)
SERVICEURI=https://westeurope.api.cognitive.microsoft.com/luis/v2.0/apps/11afb618-218a-466d-8c67-e8a3cad351d2?verbose=true&timezoneOffset=60&subscription-key=34b808a1ea5f429fb82dda9678d1a3c7&q=
#Threshholds
MIN_THRESHHOLD=0.1
CAPTURE_THRESHOLD=0.7
#Postgres Settings
#####################################
BOTKIT_STORAGE_POSTGRES_USER=postgres
BOTKIT_STORAGE_POSTGRES_DATABASE=hallo-aargau
BOTKIT_STORAGE_POSTGRES_PASSWORD=postgres
BOTKIT_STORAGE_POSTGRES_HOST=localhost
BOTKIT_STORAGE_POSTGRES_PORT=5432
BOTKIT_STORAGE_POSTGRES_MAX_CLIENTS=10
BOTKIT_STORAGE_POSTGRES_IDLE_TIMEOUT_MILLIS=30000
BOTKIT_STORAGE_POSTGRES_DATABASE_TABLE_DEUTSCHKURS=deutschkurs
BOTKIT_STORAGE_POSTGRES_DATABASE_TABLE_DEUTSCHKURS_ANBIETER=deutschkurs_anbieter
BOTKIT_STORAGE_POSTGRES_DATABASE_TABLE_DEUTSCHKURS_DURCHFUERUNGSORT=deutschkurs_durchfuerungsort
BOTKIT_STORAGE_POSTGRES_DATABASE_TABLE_DEUTSCHKURS_KOSTEN=deutschkurs_kosten
#Log Settings
#####################################
LOG_DEBUG_2_CONSOLE=true
LOG_INFO_2_CONSOLE=true
LOG_WARN_2_CONSOLE=true
LOG_ERROR_2_CONSOLE=true
LOG_DEBUG_2_DB=true
LOG_INFO_2_DB=true
LOG_WARN_2_DB=true
LOG_ERROR_2_DB=true
LOG_DEBUG_2_FILE=true
LOG_INFO_2_FILE=true
LOG_WARN_2_FILE=true
LOG_ERROR_2_FILE=true
LOG_2_DB=true
LOG_2_FILE=true
LOG_MESSAGES_2_DB=true
LOG_MESSAGES_2_FILE=true
#Quik Replies for Kurse
#####################################
KURS_ORTE=Aarau,Baden
KURS_ORTE_PAYLOAD=Deutschkurs in Aarau,Deutschkurs in Baden
KURS_TAG=Montag,Dienstag,Mittwoch,Donnerstag,Freitag
KURS_TAG_PAYLOAD=Montag,Dienstag,Mittwoch,Donnerstag,Freitag
KURS_NIVEAU=Anfänger,Schriftliche Kentnisse,A1,A2,B1,B2,C1,C2
KURS_NIVEAU_PAYLOAD=Anfänger,Schriftliche Kentnisse,A1,A2,B1,B2,C1,C2
KURS_ADRESSATENGRUPPEN=Frauen,Erwachsene,Muttersprache,B1_B2,B2,C1_C2,B2_C1,A2_B1,A1_A2
KURS_ADRESSATENGRUPPEN_PAYLOAD=Frauen,Erwachsene,Muttersprache,B1_B2,B2,C1_C2,B2_C1,A2_B1,A1_A2
KURS_ANBIETER=Nosotras Aargau,Verein Lesen und Schreiben für Erwachsene,TLC Baden
KURS_ANBIETER_PAYLOAD=Nosotras Aargau,Verein Lesen und Schreiben für Erwachsene,TLC Baden
KURS_INTENSITAET=Wochenkurs,Intensivkurs
KURS_INTENSITAET_PAYLOAD=Wochenkurs,Intensivkurs
KURS_ZWECK=Konversation,Deutsch Lesen und Schreiben,Deutsch A1,Deutsch A2,Deutsch A2 (Intensiv),Deutsch B1,Deutsch B1 (Intensiv),Konversation B2,Deutsch B2,Geschäftsdeutsch B2,Deutsch C1,Deutsch C2
KURS_ZWECK_PAYLOAD=Konversation,Deutsch Lesen und Schreiben,Deutsch A1,Deutsch A2,Deutsch A2 (Intensiv),Deutsch B1,Deutsch B1 (Intensiv),Konversation B2,Deutsch B2,Geschäftsdeutsch B2,Deutsch C1,Deutsch C2