mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-06-28 16:10:05 +08:00
10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
var port = require('./config.js').port;
|
|
module.exports = {
|
|
'googleAuth' : {
|
|
'clientID' : 'yours-here',
|
|
'clientSecret' : 'yours-here',
|
|
'callbackURL' : 'http://localhost:' + port + '/auth/google/callback'
|
|
}
|
|
};
|
|
|