[CHANGE] Added readme && added service

This commit is contained in:
max
2025-08-31 15:45:42 +02:00
parent a2489fea8d
commit d4d5ef1846
3 changed files with 29 additions and 3 deletions

15
README.md Normal file
View File

@@ -0,0 +1,15 @@
# YouTube Manager
Server application for managing YouTube content and managing a local library.
### Migrations
Using migrations using the .NET CLI
Add migration
```shell
dotnet ef migrations add <MigrationName> --project Manager.Data --context Manager.Data.Contexts.AppDbContext
```
Update the database
```shell
dotnet ef database update --project Manager.Data --context Manager.Data.Contexts.AppDbContext
```