added dummy account for GoogleAPI. Updated ReadMe to reflect this

This commit is contained in:
Curtis SerVaas
2014-11-08 13:39:23 -05:00
parent b28d79d00e
commit d2cc3177ac
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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
==============================
+2 -2
View File
@@ -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'
}
};