- .NET 6.0 or higher
- Docker
- Node
- NPM or Yarn
Setting up the docker images only requires one command
docker-compose up -d
This requires the dotnet CLI to be installed on your system.
cd api
dotnet run
# or if you want to run it in watch mode
dotnet watch
cd client
npm install
# or if you want to use yarn
yarn install
npm run dev
# or if you want to use yarn
yarn dev