This project is a sample application that uses
It shows how you can build a modern Angular app with Tanstack Query.
This app contains an Angular client and a Node.js server that runs with Fastify
You can start the UI and the server simultaneously using docker:
docker compose up -dFor development you can run both UI and server in separate processes manually:
# start the UI
cd ui
npm i
npm run start# start the server
cd server
npm i
npm run start