Skip to content

ankitmeena007/to_do

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To Do List

Built using HTML, CSS, Javascript and EJS

requirements: Node.js, Mongodb atlas account

Database used: Mongodb

Hosted on: Vercel

*Also features custom list creation.

Live working demo

image

To build your own To Do List:

  1. Create a MongoDB Atlas account and obtain the connection string See this tutorial for more info.

  2. Fork or Clone this repo.

  3. Create .env file

    create .env file at the root of project

    inside .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