You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
478 B
16 lines
478 B
import os |
|
|
|
# SFTP конфигурация |
|
SFTP_HOSTNAME = os.getenv("SFTP_HOSTNAME", "192.168.1.150") |
|
SFTP_USERNAME = os.getenv("SFTP_USERNAME", "monitor") |
|
SFTP_PASSWORD = os.getenv("SFTP_PASSWORD", "Audio4analy6!6") |
|
FILESAPTH = os.getenv("FILESAPTH", "audiofiles") |
|
|
|
# База данных |
|
DATABASE_URL = os.getenv("DATABASE_URL", "sqlite:///./speech_analytics.db") |
|
|
|
# GigaAM API |
|
GIGAAM_API_URL = os.getenv("GIGAAM_API_URL", "http://localhost:5001") |
|
|
|
#App Setting |
|
PORT = 5008
|
|
|