- Create a TODO item
- Mark TODO item as complete
- Delete TODO item
The project was build using node version 16.17.1 and yarn version 1.22.19
node -v
v16.17.1
yarn -v
1.22.19
For setting up your development environment, use respective links in the Tech section
-
First of all create an account at https://www.mongodb.com/ and create a cluster and database
-
Create a
nodemon.json
file inside server -
Paste the following inside nodemon.json
{ "env": { "MONGO_USER": "<your_mongo_db_user>", "MONGO_PASSWORD": "<your_mongo_db_password>", "MONGO_DB": "<your_db_name>" } }
-
Replace your mongo db user, password and db name
-
Don't forget to whitelist your ip address from mongo db atlas everytime you connect to a different network
-
Start server
cd server
andyarn start
-
Start client app :
cd client
andyarn start
Full tutorial on free code camp by Ibrahim Ndaw. Github