/IDS

Primary LanguageJavaScript

Runing an app

clone the app using command

git clone https://github.com/vatraiadarsh/parallax-solution.git

Installing dependencies

cd parallax-solution
npm install  (installing dependencies for client)
cd server
npm install ((installing dependencies for server))

Running Server

Make sure to update the .env.example file with the mongodb uri just on .env file

DATABASE=mongodb+srv://dbuser:dbpassword@your_db_name.pbn7j.mongodb.net/myFirstDatabase?retryWrites=true&w=majority
JWT_SECRET=some_secret_letters_numbers
SENDGRID_KEY=SG.your.secret-key
EMAIL_FROM=yourname@gmail.com
cd server
npm start

Running Client/app (from root )

npm start