Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/salmandabbakuti/magic-link

full-stack passwordless login app idea using mongo, nodejs, graphql, react
https://github.com/salmandabbakuti/magic-link

graphql mongodb mongoose nodejs passwordless passwordless-authentication reactjs

Last synced: 9 days ago
JSON representation

full-stack passwordless login app idea using mongo, nodejs, graphql, react

Awesome Lists containing this project

README

        

# magiclink-app
Passwordless login(magic link) via email

#### Steps:

1. Create .env file in root directory with below parameters of your environment:
```
MONGODB_URI=
APP_URL=
JWT_SECRET=
SES_SENDER_EMAIL=
SES_REGION=
```
2. Install dependencies and run backend

```
npm i
npm run dev
```
3. Starting Client Application

>Create ```.env``` file in root of ```client``` with below parameters of your environment:

```
REACT_APP_API_URL=
```

```
cd client
npm install
npm start
```