*Also features custom list creation.
Live working demo
-
Create a MongoDB Atlas account and obtain the connection string See this tutorial for more info.
-
Fork or Clone this repo.
-
Create .env file
create
.env
file at the root of projectinside .env file add
DB_CONNECT
as env variable and paste your MongoDB Atlas connection string:
// For example
// .env
DB_CONNECT = <your connecting string>
Note: if adding .env to .gitignore file at root of the project doesn't hide the .env file for some reason, then you can use the following commands:
git rm -r --cached .env
git add .
git commit -m 'your message'
git push
Credits : - Web Dev Bootcamp