-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ♻️ upgrade ef core to latest version (#10)
- Loading branch information
1 parent
f8e436b
commit 8bf3d4b
Showing
15 changed files
with
136 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This needs to be configured by each developer based on their platform, we also ask people to tell git to ignore changes to the file by running `git update-index --assume-unchanged .env` | ||
# https://docs.docker.com/compose/environment-variables/env-file/ | ||
|
||
TAG=latest | ||
POSTGRES_USER=postgres | ||
POSTGRES_PASSWORD=postgres | ||
POSTGRES_PORT=5432 | ||
POSTGRES_HOST_PORT=5432 | ||
REGISTRY=ghcr.io | ||
RABBITMQ_PORT=5672 | ||
RABBITMQ_HOST_PORT=5672 | ||
RABBITMQ_API_PORT=15672 | ||
RABBITMQ_HOST_API_PORT=15672 |
40 changes: 40 additions & 0 deletions
40
deployments/docker-compose/docker-compose.infrastructure.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
version: "3.9" | ||
name: vertical-slice-template | ||
|
||
services: | ||
####################################################### | ||
# rabbitmq | ||
####################################################### | ||
rabbitmq: | ||
image: rabbitmq:management | ||
container_name: rabbitmq | ||
restart: on-failure | ||
ports: | ||
- ${RABBITMQ_HOST_PORT:-5672}:${RABBITMQ_PORT:-5672} | ||
- ${RABBITMQ_HOST_API_PORT:-15672}:${RABBITMQ_API_PORT:-15672} | ||
# volumes: | ||
# - rabbitmq:/var/lib/rabbitmq | ||
networks: | ||
- infrastructure | ||
|
||
|
||
####################################################### | ||
# postgres | ||
####################################################### | ||
postgres: | ||
image: postgres:latest | ||
container_name: postgres | ||
restart: on-failure | ||
ports: | ||
- ${POSTGRES_HOST_PORT:-5432}:${POSTGRES_PORT:-5432} | ||
#https://docs.docker.com/compose/environment-variables/env-file/#parameter-expansion | ||
environment: | ||
- POSTGRES_USER=${POSTGRES_USER:-postgres} | ||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD:-postgres} | ||
networks: | ||
- infrastructure | ||
|
||
networks: | ||
infrastructure: | ||
name: infrastructure | ||
driver: bridge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.303", | ||
"version": "8.0.400", | ||
"rollForward": "latestFeature" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...2201_InitialCatalogsMigration.Designer.cs → ...65201_InitialCatalogMigration.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.