Passwordless login(magic link) via email
- Create .env file in root directory with below parameters of your environment:
MONGODB_URI=
APP_URL=
JWT_SECRET=
SES_SENDER_EMAIL=
SES_REGION=
- Install dependencies and run backend
npm i
npm run dev
- Starting Client Application
Create
.env
file in root ofclient
with below parameters of your environment:
REACT_APP_API_URL=
cd client
npm install
npm start