This service facilitates user creation, user deletion, and updating user information. It also facilitates login and authentication via JWT cookie.
- Install npm packages using
npm i
. - Rename
.env.sample
to.env
- Setup mongodb database
3.1. If running mongodb locally using docker, run
docker run --name mongo -p 27017:27017 -d mongo
- Run User Service using
npm run start
ornpm run dev
for hot reload during development. - Access the service at http://localhost:8000