Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 523 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 523 Bytes

Express, Vite, and MongoDB full-stack application

Description

Just a simple todo app

Installation

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