Server-side application which:
- stores information about user's workouts
- provides feedback about progress
- shows places to work out around you
- .NET 8 SDK (download here)
- Entity framework tools (instructions here)
- Docker (download here)
- Start docker images
docker-compose up -d
- Apply database migrations
cd FormUp.Api/ # Change into folder where .csproj file is located
dotnet ef database update
- Run the application
dotnet run
docker-compose down
More information about application deployment can be found on deployment documentation page.
Some of the common problems and their solutions are described on the troubleshooting page.