No description
- C# 100%
| .vscode | ||
| src | ||
| .gitattributes | ||
| .gitignore | ||
| docker-compose.yaml | ||
| dockerfile | ||
| fmk-punch-clock.sln | ||
| README.md | ||
FMK Punch Clock
Entity Framework Commands (Visual Studio Code)
- dotnet tool install --global dotnet-ef
- dotnet ef migrations add Init
- dotnet ef migrations remove
- dotnet ef database update
Entity Framework Commands (Visual Studio - Package Manager Console)
- add-migration Init
- remove-migration
- update-database
Docker
- docker build -t fmk-punch-clock .
Docker Compose
- docker compose up --build