first commit

This commit is contained in:
Ashim Kumar
2026-01-09 21:06:30 +06:00
commit 11d715eb85
19 changed files with 8235 additions and 0 deletions

26
coolify.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "audiobook-studio-pro-v3",
"build": {
"dockerfile": "Dockerfile"
},
"settings": {
"port": 5009,
"health_check_path": "/health",
"health_check_interval": 30,
"health_check_timeout": 10
},
"volumes": [
{
"source": "/opt/apps/audiobook-studio-pro-v3",
"target": "/opt/apps/audiobook-studio-pro-v3",
"type": "bind"
}
],
"environment": {
"SECRET_KEY": "${SECRET_KEY}",
"DATABASE_DIR": "/opt/apps/audiobook-studio-pro-v3",
"TTS_API_URL": "${TTS_API_URL}",
"TTS_API_KEY": "${TTS_API_KEY}",
"FLASK_ENV": "production"
}
}