Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 486 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 486 Bytes

NodeJs, Express, EJS & MongoDB Blog - CRUD

alt text

You need:

  • NodeJs
  • Database (MongoDB) Free Cluster

Create .env file

Create a .env file to store your credentials. Example below:

MONGODB_URI=mongodb+srv://<username>:<password>@clusterName.xxxxxxx.mongodb.net/blog
JWT_SECRET=MySecretBlog

Installation

To install and run this project - install dependencies using npm and then start your server:

$ npm install
$ npm run dev