Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/salmandabbakuti/magic-link
- Owner: Salmandabbakuti
- License: apache-2.0
- Created: 2021-11-19T05:33:27.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T02:48:14.000Z (2 months ago)
- Last Synced: 2024-09-07T09:45:26.126Z (2 months ago)
- Topics: graphql, mongodb, mongoose, nodejs, passwordless, passwordless-authentication, reactjs
- Language: JavaScript
- Homepage: https://magic-link-alpha.vercel.app
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```