Just a simple todo app
Clone the repo
git clone https://github.com/Kh1ng/ExpressMongoCRUD.git
cd ExpressMongoCRUD/frontend
npm install
cd ../backend
npm install
Start the DB
docker-compose -f docker-compose-dev.yml up
# optional: use mongosh to manage db
docker exec -it mongo-playground-web-db-1 mongosh
Start front and back end respectively
cd frontend
npm run dev
cd ../backend
npm run start