Client Manager

Tech stack

Frontend

  • Vue.js 3 (Composition API)
  • Pinia
  • TypeScript
  • Axios

Backend

  • NestJS

Install and run the frontend

Install the dependencies

cd client
npm install

Start the app in development mode

npm run dev

Build the app for production

npm run build

Install and run the backend

Install the dependencies

cd server
npm install

Create .env file:

CLIENT_ID=
SOURCE_URL=

Start the app in development mode

npm run start:dev

Build the app for production

npm run build