An application to manage invoices.
- Frontend - Angular (v15.2.0)
- State management - NgRx (v15.3.0)
- UI component library - Angular Material (v15.2.1)
- Backend - NestJS (v9.0.0)
- Node.js - v18.15.0 (latest LTS)
https://angular-nestjs-invoices.web.app/
https://angular-nestjs-invoices-api.vercel.app/
GET /invoice
GET /invoice/:id
PUT /invoice/:id
DELETE /invoice/:id
GET /clean
GET /reset
Installation
cd frontend
npm install
Start with mock data
npm run start
Start with local API
npm run start:api
Build
npm run build
Installation
cd backend
npm install
Start server
npm run start
Build
npm run build