A Full stack Project by Dean Ukanah
Client Package is a React Vite Project. It makes use of tools like Tailwind CSS, React-query, React useContext and others
$ cd client
$ npm install
# development
$ npm run dev
# buid mode
$ npm run build
# lint
$ npm run lint
# prettier format
$ npm run format
Note: To run the application you are to copy the variables in .env.example to a new .env file in the client folder.
Server Package is a NestJS Project. NestJS is a progressive framework for building efficient and scalable server-side applications.
$ cd server
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod