1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2025-02-12 11:46:14 +02:00
STARK/config.example.py

21 lines
512 B
Python
Raw Normal View History

2020-11-06 13:51:05 +02:00
import pathlib
path = str(pathlib.Path(__file__).parent.absolute())
del pathlib
2021-04-17 23:11:40 +03:00
telebot = '12345678:token'
2021-02-07 20:20:48 +02:00
goole_tts_json_key = path+'google-cloud-text-to-speech-private-key.json'
db_name = 'archie.db'
vosk_model = 'model-small-rus' # from alphacephei.com/vosk/models
2021-04-17 23:11:40 +03:00
double_clap_activation = False
names = ['арчи', 'archie']
2021-02-07 20:20:48 +02:00
#################################################
# Django
django_secret_key = '-----123456789-----'
django_debug = True
django_allowed_hosts = []