MyPlanner
You'll need to install the following pre-requisites in order to build SAFE applications
- The .NET 5 SDK
- The Yarn package manager (you can also use
npm
but the usage ofyarn
is encouraged). - Node LTS installed for the front end components.
- If you're running on OSX or Linux, you'll also need to install Mono.
Work with the application
Before you run the project for the first time only you should install its local tools with this command:
dotnet tool restore
dotnet paket restore
dotnet build
To run the application locally:
dotnet fake build -t run
To build a release version:
dotnet fake build --target BuildRelease
then check the deploy folder
To run automation tests:
dotnet fake build --target RunAutomation
To run CQRS tests:
dotnet fake build --target RunCQRS
To run Client/Server tests:
dotnet fake build --target RunTests