A fullstack notes saving app.
- Create a
config.json
in 'notes\backend\config' folder.
{
"gmail_info":{
"email": "EMAIL-ID-HERE",
"password": "APP-PASSWORD-HERE"
},
"otp_secret": "OTP-SECRET",
"otp_validation_time": 900,
"login_secret": "LOGIN-SECRET"
}
cd backend
npm install
npm start # make run mongodb server is up and running
- Change backend api url in
config.json
atsrc/config.json
.
cd notes
npm install
npm run dev