-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
28 lines (23 loc) · 771 Bytes
/
config.js
File metadata and controls
28 lines (23 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
var config = {
app: {
title: 'A simple JavaScript starter app',
subtitle: 'using NodeJS, Express 4, Handlebars, Passport and JQuery',
},
urls: {
authorization: 'https://staging-auth.wallstreetdocs.com/oauth/authorize',
token: 'https://staging-auth.wallstreetdocs.com/oauth/token',
userInfo: 'https://staging-auth.wallstreetdocs.com/oauth/userinfo',
},
auth: {
clientID: 'coding_test',
clientSecret: 'bwZm5XC6HTlr3fcdzRnD',
authorizationURL: 'https://staging-auth.wallstreetdocs.com/oauth/authorize',
tokenURL: 'https://staging-auth.wallstreetdocs.com/oauth/token',
callbackURL: 'http://localhost:3000'
},
redirects: {
successRedirect: '/secure',
failureRedirect: '/login'
}
};
module.exports = config;