- Detaillierter Plan zur Migration von alter zu neuer Modulstruktur - Umfasst Überführung von shared-kernel zu core-Modulen - Definiert Migration von Fachdomänen zu bounded contexts: * master-data → masterdata-Module * member-management → members-Module * horse-registry → horses-Module * event-management → events-Module - Beschreibt Verlagerung von api-gateway zu infrastructure/gateway - Strukturiert nach Domain-driven Design Prinzipien - Berücksichtigt Clean Architecture Layering (domain, application, infrastructure, api)
36 lines
591 B
JSON
36 lines
591 B
JSON
{
|
|
"ignorePatterns": [
|
|
{
|
|
"pattern": "^http://localhost"
|
|
},
|
|
{
|
|
"pattern": "^https://localhost"
|
|
},
|
|
{
|
|
"pattern": "^http://127.0.0.1"
|
|
},
|
|
{
|
|
"pattern": "^https://127.0.0.1"
|
|
}
|
|
],
|
|
"replacementPatterns": [
|
|
{
|
|
"pattern": "^/",
|
|
"replacement": "{{BASEURL}}/"
|
|
}
|
|
],
|
|
"httpHeaders": [
|
|
{
|
|
"urls": ["https://github.com"],
|
|
"headers": {
|
|
"Accept": "text/html"
|
|
}
|
|
}
|
|
],
|
|
"timeout": "20s",
|
|
"retryOn429": true,
|
|
"retryCount": 3,
|
|
"fallbackRetryDelay": "30s",
|
|
"aliveStatusCodes": [200, 206]
|
|
}
|