Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
iampavangandhi committed Sep 1, 2020
1 parent 20639c8 commit 29182a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
- [GMAIL API Credentials](https://www.woolha.com/tutorials/node-js-send-email-using-gmail-with-nodemailer-oauth-2)
- [Stripe Payment Gateway Keys](https://stripe.com/)

### config.env format
### Check config.env format

```bash
PORT = XXXX
Expand Down Expand Up @@ -93,8 +93,8 @@ npm run dev

.
├── 📁 .github # Github files (don't change)
├── 📁 config # Config files
├── 📁 helpers # Helper on controller files
├── 📁 config # Configuration files
├── 📁 helpers # Helper or Controller files
├── 📁 middleware # Expresss middlewares
├── 📁 models # Mongoose models
├── 📁 project-plan # Project planning files
Expand Down
2 changes: 1 addition & 1 deletion config/passport.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Passport Google OAuth 2.0 Strategy
// Passport Google OAuth2 Strategy

const GoogleStrategy = require("passport-google-oauth20").Strategy;
const mongoose = require("mongoose");
Expand Down
2 changes: 2 additions & 0 deletions config/passportLocal.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Passport Local Strategy

const LocalStrategy = require("passport-local").Strategy;
const bcrypt = require("bcryptjs");

Expand Down

0 comments on commit 29182a5

Please sign in to comment.