Clone the repository & navigate in
git clone [email protected]:Umesh2202/TODO-app.git && cd TODO-app
Open the folder in any code editor(vscode example given below)
code .
Navigate to the frontend folder
cd frontend
Install dependencies for frontend
pnpm i
Navigate to the backend folder
cd backend
Install dependencies for backend
pnpm i
Open the file server.mjs
š“š“ Add your firestore database credentials in the .env file which will be empty
Start the server (from the backend folder) (default port 5000)
node server.mjs
Start the frontend (from the frontend folder)
npm run dev