TwoToc code
[YouAndWeb_TwoToc] / server / config / local.env.sample.js
1 'use strict';
2
3 // Use local.env.js for environment variables that grunt will set when the server starts locally.
4 // Use for your api keys, secrets, etc. This file should not be tracked by git.
5 //
6 // You will need to set these on the server you deploy to.
7
8 module.exports = {
9   DOMAIN:           'http://localhost:9000',
10   SESSION_SECRET:   'dashboard-secret',
11
12   FACEBOOK_ID:      'app-id',
13   FACEBOOK_SECRET:  'secret',
14
15   TWITTER_ID:       'app-id',
16   TWITTER_SECRET:   'secret',
17
18   GOOGLE_ID:        'app-id',
19   GOOGLE_SECRET:    'secret',
20
21   // Control debug level for modules using visionmedia/debug
22   DEBUG: ''
23 };