- First move to the
BDSA2020.Entitiesdirectory - Then run the following commands:
dotnet user-secrets init
dotnet user-secrets set "ConnectionStrings:ConnectionString" " $connectionString"To view your user-secret run the command: dotnet user-secrets list
- Move to the
BDSA2020.Entitiesdirectory - First add the new migration:
dotnet ef migrations add <NameOfMigration> --startup-project ../BDSA2020.Api/ - Update database:
dotnet ef database update --startup-project ../BDSA2020.Api/
-
Follow the above steps first to make sure you have setup a database
-
Start the API
- Go to the
BDSA2020.Apidirectory - Run the command
dotnet run - The Api will then be avaliable at https://localhost:5000.
- Go to the
-
Start up the GUI
- In a different terminal go to the
BDSA2020.Viewdirectory - Run the command
dotnet run - The GUI can be seen at https://localhost:4000.
- In a different terminal go to the