- introduce `LyricFlow.Core.Backend` with shared DTOs, rhyme/spellcheck engines, and REST endpoints - wire Python GUI/core to run and call the backend via new bridge/client modules - add backend parity/integration tests and update packaging/ignore settings
24 lines
384 B
JSON
24 lines
384 B
JSON
{
|
|
"Backend": {
|
|
"Urls": "http://127.0.0.1:5000"
|
|
},
|
|
"Database": {
|
|
"Path": "data/lyricflow.db"
|
|
},
|
|
"Nltk": {
|
|
"CmudictPath": "",
|
|
"WordNetPath": ""
|
|
},
|
|
"State": {
|
|
"SessionPath": "",
|
|
"CorePreferencesPath": ""
|
|
},
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*"
|
|
}
|