- Add SQLite as alternative database for offline/firewall environments - Add --database-type parameter to build-client.bat (mysql/sqlite) - Refactor database.py to support both MySQL and SQLite - Add DB_TYPE and SQLITE_PATH configuration options - Set fixed unpackDirName for portable exe (Meeting-Assistant) - Update DEPLOYMENT.md with SQLite mode documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
898 B
JSON
36 lines
898 B
JSON
{
|
|
"apiBaseUrl": "http://localhost:8000/api",
|
|
"uploadTimeout": 600000,
|
|
"appTitle": "Meeting Assistant",
|
|
"whisper": {
|
|
"model": "medium",
|
|
"device": "cpu",
|
|
"compute": "int8"
|
|
},
|
|
"backend": {
|
|
"embedded": true,
|
|
"host": "127.0.0.1",
|
|
"port": 8000,
|
|
"database": {
|
|
"type": "mysql",
|
|
"sqlitePath": "data/meeting.db",
|
|
"host": "mysql.theaken.com",
|
|
"port": 33306,
|
|
"user": "A060",
|
|
"password": "WLeSCi0yhtc7",
|
|
"database": "db_A060"
|
|
},
|
|
"externalApis": {
|
|
"authApiUrl": "https://pj-auth-api.vercel.app/api/auth/login",
|
|
"difyApiUrl": "https://dify.theaken.com/v1",
|
|
"difyApiKey": "app-oFptWFRlSgvwhJ8DzZKN08a0",
|
|
"difySttApiKey": "app-xQeSipaQecs0cuKeLvYDaRsu"
|
|
},
|
|
"auth": {
|
|
"adminEmail": "ymirliu@panjit.com.tw",
|
|
"jwtSecret": "your_jwt_secret_here",
|
|
"jwtExpireHours": 24
|
|
}
|
|
}
|
|
}
|