Skip to content

Commit

Permalink
Merge pull request #138 from wrappid/WRPD-enhancement-137
Browse files Browse the repository at this point in the history
feat(core): 🔧 add social login configuration template to wrapp…
  • Loading branch information
anantakumarghosh authored Oct 3, 2024
2 parents 885b3dc + a95c3c2 commit 7633061
Showing 1 changed file with 66 additions and 3 deletions.
69 changes: 66 additions & 3 deletions wrappid.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,28 @@
"drawerWidth": 240,
"miniDrawerWidth": 56,
"snackMessage": false,
"otpLength": 6
"otpLength": 6,
"socialLogin": {
"enable": true,
"github": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
"facebook": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
"linkedin": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
}
}
},
"stage": {
"environment": "stage",
Expand All @@ -25,7 +46,28 @@
"drawerWidth": 240,
"miniDrawerWidth": 56,
"snackMessage": false,
"otpLength": 6
"otpLength": 6,
"socialLogin": {
"enable": true,
"github": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
"facebook": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
"linkedin": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
}
}
},
"prod": {
"environment": "production",
Expand All @@ -39,6 +81,27 @@
"drawerWidth": 240,
"miniDrawerWidth": 56,
"snackMessage": false,
"otpLength": 6
"otpLength": 6,
"socialLogin": {
"enable": true,
"github": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
"facebook": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
},
"linkedin": {
"enable": true,
"apiKey": "xxxxxxxxxxxxxxxxxxxxxxxx",
"apiKeySecret": "xxxxxxxxxxxxxxxxxxxxxxxx",
"callbackURL": "xxxxxxxxxxxxxxxxxxxxxxxx"
}
}
}
}

0 comments on commit 7633061

Please sign in to comment.