Skip to content

Commit

Permalink
Merge branch 'feature/add_signature_value_object' of https://github.c…
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilbaczek committed Oct 17, 2024
2 parents 108b2e6 + a8b4fac commit b63b4c3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/chapter-4-contracts-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Add Evolutionary Architecture Nuget Source
uses: evolutionary-architecture/evolutionary-architecture-by-example/.github@feature/aggregate_root_description_clarifying
uses: evolutionary-architecture/evolutionary-architecture-by-example/.github@feature/add_signature_value_object
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
owner: ${{ github.repository_owner }}
Expand All @@ -54,7 +54,7 @@ jobs:
with:
dotnet-version: 8.0.x
- name: Add Evolutionary Architecture Nuget Source
uses: evolutionary-architecture/evolutionary-architecture-by-example/.github@feature/aggregate_root_description_clarifying
uses: evolutionary-architecture/evolutionary-architecture-by-example/.github@feature/add_signature_value_object
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
owner: ${{ github.repository_owner }}
Expand Down
22 changes: 17 additions & 5 deletions Chapter-2-modules-separation/Src/Fitnet/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,28 @@
"AllowedHosts": "*",
"Modules": {
"Passes": {
"Enabled": false
"Enabled": true,
"ConnectionStrings": {
"Primary": ""
}
},
"Contracts": {
"Enabled": true
"Enabled": true,
"ConnectionStrings": {
"Primary": ""
}
},
"Reports": {
"Enabled": false
"Enabled": true,
"ConnectionStrings": {
"Primary": ""
}
},
"Offers": {
"Enabled": false
"Enabled": true,
"ConnectionStrings": {
"Primary": ""
}
}
}
}
}

0 comments on commit b63b4c3

Please sign in to comment.