-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
63 lines (50 loc) · 1.43 KB
/
.env.example
File metadata and controls
63 lines (50 loc) · 1.43 KB
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
# Aparsoft TTS Configuration
# Copy this file to .env and customize as needed
# ============================================================
# TTS Configuration
# ============================================================
# Voice settings
TTS_VOICE=am_michael
TTS_LANG_CODE=a
TTS_SPEED=1.0
TTS_REPO_ID=hexgrad/Kokoro-82M
# Audio processing
TTS_SAMPLE_RATE=24000
TTS_ENHANCE_AUDIO=true
TTS_TRIM_SILENCE=true
TTS_TRIM_DB=30.0
TTS_FADE_DURATION=0.1
# Output settings
TTS_OUTPUT_DIR=outputs
TTS_OUTPUT_FORMAT=wav
# Performance
TTS_CHUNK_SIZE=1024
TTS_MAX_WORKERS=10
# ============================================================
# MCP Server Configuration
# ============================================================
MCP_SERVER_NAME=aparsoft-tts-server
MCP_SERVER_VERSION=1.0.0
MCP_TRANSPORT=stdio
MCP_HOST=localhost
MCP_PORT=8000
# Rate limiting
MCP_ENABLE_RATE_LIMITING=true
MCP_RATE_LIMIT_CALLS=100
MCP_RATE_LIMIT_PERIOD=60
# ============================================================
# Logging Configuration
# ============================================================
LOG_LEVEL=INFO
LOG_FORMAT=console
LOG_OUTPUT=stdout
LOG_FILE=logs/aparsoft_tts.log
# Structured logging options
LOG_INCLUDE_TIMESTAMP=true
LOG_INCLUDE_CALLER=true
LOG_INCLUDE_CONTEXT=true
# ============================================================
# Application Settings
# ============================================================
ENVIRONMENT=production
DEBUG=false