* Refactor identity options * Delete templates Will be created as part of a separate repo. * Little cleanup * Increase token lifetime for reference server app * Cleanup workflow definition editor plugin * Fix workflow instance viewer component * Update identity generator to use hyphen format * Improve workflow and activity execution pipeline registration API * Fix workflow journal * Update backend * Prevent unnecessary re-render * Restore autolayout function
26 lines
515 B
JSON
26 lines
515 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Debug",
|
|
"Microsoft.EntityFrameworkCore": "Warning",
|
|
"Microsoft.AspNetCore": "Debug"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"ConnectionStrings": {
|
|
"Sqlite": "Data Source=elsa.sqlite.db;Cache=Shared;",
|
|
"RabbitMq": "localhost"
|
|
},
|
|
"Identity": {
|
|
"CreateDefaultAdmin": true,
|
|
"Tokens": {
|
|
"SigningKey": "secret-signing-key",
|
|
"Lifetime": "8:00:00"
|
|
}
|
|
},
|
|
"RabbitMq": {
|
|
"Username": "guest",
|
|
"Password": "guest"
|
|
}
|
|
}
|