IOSD / url-shortener-with-analysis

A project for IOSD Summer of Code 2019, a modern url shortener with support for custom domains and provides statistics for your shortened URL
2 stars 1 forks source link

Setting up Node Environment #1

Open saxenapeeyush opened 5 years ago

saxenapeeyush commented 5 years ago

Start setting up a Node Environment on your machine and make the folders as :-

Inside the utils folder , add a file config.js and add mongoDB cloud link , as :-

> const config = {
>     dbConfig : "mongodb+srv://<username>:<password>@cluster0-sicof.mongodb.net/<databaseName>?retryWrites=true&w=majority"
> }
> 
> module.exports=config;