Table of Contents
This is a Full Stack Password Manager.
Used to store and manage online credentials and stores password in encrypted format in Mongo DB Database.
- Node ^10.0.0
- npm
$ cd client // go to client folder
$ npm i // npm install packages
$ npm start // run it locally
// deployment for client app
$ npm run build
You need to add Port number for backend, MongoDB atlas URI and create a JWT secret
PORT = 8000
MONGO_URI = <your mongoDB atlas URI>
SECRET_KEY = <your secret key>
CRYPTO_SECRET_KEY = <32 bit string>
$ cd server // go to backend folder
$ npm i // npm install packages
$ npm start // run it locally