elsa-core/src/bundles/Elsa.WorkflowServer.Web/appsettings.json
Sipke Schoorstra 5f6454b59c
Workflow as Activity - input/output (#3699)
* Restructure component folders

* Restructure JavaScript module folders

* Remove ActivityType field from descriptor 

No longer necessary.

* Incremental work on synthetic properties

* Implement synthetic property persistence

* Add JS functions to return input from composed activity

* Cleanup

* Take into account versioning

* Fix versioning

* Add Output management

* Implement output handling
2023-02-13 12:15:20 +01:00

22 lines
468 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft.EntityFrameworkCore": "Warning",
"Microsoft.AspNetCore": "Debug"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"Sqlite": "Data Source=elsa.sqlite.db;Cache=Shared;"
},
"Identity": {
"CreateDefaultAdmin": true,
"Tokens": {
"SigningKey": "secret-signing-key",
"AccessTokenLifetime": "1:00:00",
"RefreshTokenLifetime": "1:10:00"
}
}
}