To install Bun:
curl -fsSL https://bun.sh/install | bashTo install dependencies:
bun installCreate env file:
cp env.template .envAdjust it if you need.
Migrate a database:
bunx prisma migrate devTo run:
cd backend
bun run serveWith hot reloading:
cd backend
bun run serve:watchTo run in dev mode:
cd frontend
bun run devExample application exposes one query and two mutations.
You can sign up, sign in and query a list of users.
User's list is protected from unauthorized access.
Use Postman collection in the docs folder to test the API.