forked from NXture/Sia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
42 lines (32 loc) · 968 Bytes
/
.env.sample
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
# Main settings of Sia
# Language currently used
SIA_LANG=en-US
# Server
SIA_HOST=http://localhost
SIA_PORT=1337
# Time zone (current one by default)
SIA_TIME_ZONE=
# Enable/disable after speech
SIA_AFTER_SPEECH=false
# Enable/disable Sia's speech-to-text
SIA_STT=false
# Speech-to-text provider
SIA_STT_PROVIDER=coqui-stt
# Enable/disable Sia's text-to-speech
SIA_TTS=false
# Text-to-speech provider
SIA_TTS_PROVIDER=flite
# Enable/disable collaborative logger
SIA_LOGGER=false
# Path to the Pipfile
PIPENV_PIPFILE=bridges/python/Pipfile
# Path to the virtual env in .venv/
PIPENV_VENV_IN_PROJECT=true
# Fix https://click.palletsprojects.com/en/7.x/python3/#python-3-surrogate-handling
# If Sia replies you something like "Sorry, it seems I have a problem with the ... module" but
# still gives you the right answer, then:
## 1. Run `locale -a`
## 2. Pick a locale
## 3. Replace the LC_ALL and LANG values with the needed locale
LC_ALL=C.UTF-8
LANG=C.UTF-8