Skip to content

RommensArne/dotnet-app-prod-repo

Repository files navigation

Rise - TIAO2

Team Members

Technologies & Packages Used

Installation Instructions

  1. Clone the repository
  2. Open the Rise.sln file in Visual Studio or Visual Studio Code
  3. Run the project using the Rise.Server project as the startup project
  4. The project should open in your default browser on port 5001.
  5. Initially the database will not exist, so you will need to run the migrations to create the database.

Creation of the database

To create the database, run the following command in the main folder Rise

dotnet ef database update --startup-project Rise.Server --project Rise.Persistence

Make sure your connection string is correct in the Rise/Server/appsettings.json file.

Migrations

Adapting the database schema can be done using migrations. To create a new migration, run the following command:

dotnet ef migrations add [MIGRATION_NAME] --startup-project Rise.Server --project Rise.Persistence

And then update the database using the following command:

dotnet ef database update --startup-project Rise.Server --project Rise.Persistence

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published