🏃🔥🔥🔥🔥🔥🔥
Group project - web application development and testing
-
On the new computer, clone the repository or pull the latest changes from the remote repository. 👇
git clone https://github.com/hieudku/FitApp.git
-
Run the following command to restore NuGet packages that the project depends on: 👇
dotnet restore
-
Check the connection string in
appsettings.json
. 👇"ConnectionStrings": { "DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=FitAppContext;Trusted_Connection=True;MultipleActiveResultSets=true" }
-
Update the database to local machine: 👇
Update-Database
-
Start the application and test all major functionalities:
- Registration and Login
- CRUD operations for workouts
- Navigation between pages
- Database interactions 👇
dotnet run
or Ctrl + F5
- Running migrations to make sure database is up-to-date. 👇
dotnet ef database update