diff --git a/README.md b/README.md index 5d4db79..fe21cca 100644 --- a/README.md +++ b/README.md @@ -32,10 +32,10 @@ Documentation + Todos: Installation and Usage ====================== - - A throwaway database account is provided. But, you can edit /config/config.js with your own credentials. + - A throwaway database account is provided. But, you can edit /config/config.js with your own credentials. A throwaway google API account is also provided, but you can edit config/auth.js with your own credentials. If you do either of these, make sure to run the "git --assume-unchanged" command (described below) to prevent your details from being uploaded. - `npm install` - `node app.js` - - You'll need to create a Google developers account in order to log-in with google, so that you can actually make changes. I'll try to remove this step so that it's easier to get up and running. + - You need to log-in with google in order to make any changes to the document. Setting up a Google API account ============================== diff --git a/config/auth.js b/config/auth.js index 4ed8978..1986b25 100644 --- a/config/auth.js +++ b/config/auth.js @@ -1,8 +1,8 @@ var port = require('./config.js').port; module.exports = { 'googleAuth' : { - 'clientID' : 'yours-here', - 'clientSecret' : 'yours-here', + 'clientID' : '740908531699-7v0vlgb8h0hvvfj21365dadkuqdms9nk.apps.googleusercontent.com', + 'clientSecret' : 'zhdBknzScyShw5GiMZowp89Y', 'callbackURL' : 'http://localhost:' + port + '/auth/google/callback' } };