This is my old todo app, written with JavaScript and featuring MongoDB, Express.js, Bootstrap, and EJS
To run this project, you will need to add the following environment variables to your .env file. You can also copy it from .env_example.
MONGO_URI - Your mongodb connection string
DATABASE_NAME = 'TODO' - Database name
SESSION_SECRET - Secret used to sign the session cookie
PORT - Server port
Clone the project
git clone https://github.com/JustEnough1/To-do-app.gitInstall dependencies
npm iAdd environment variables
Rename .env-example to .env and set valuesStart the server
npm start