forked from dstroot/express-bootstrap-passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-example.js
44 lines (39 loc) · 1.83 KB
/
config-example.js
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
'use strict' // for jshint
/* ==========================================================
* config.js v0.0.1
* Author: Daniel J. Stroot
* Date: 01.07.2013
* ========================================================== */
/* ==========================================================
* The basics
* ========================================================== */
var config = {};
config.title = 'Bootstrap';
config.description = 'Sleek, intuitive, and powerful front-end framework for faster and easier web development.';
config.author = '@MDO and @FAT';
config.email = '[email protected]'
config.keywords = 'cool, smooth, rockin!'
config.version = '2.2.2';
/* ==========================================================
* CouchDB Configuration
* ========================================================== */
config.couchdb = {};
config.couchdb.url = 'https://xxx.cloudant.com';
config.couchdb.port = 443;
config.couchdb.username = 'xxx';
config.couchdb.password = 'hhr666h6yu6h6';
/* ==========================================================
* Redis Configuration (for sessions)
* ========================================================== */
config.redis = {};
config.redis.togourl = 'redis://you:[email protected]:9458/';
config.redis.salt = 'rththtrt66577567';
//config.redis.host = '127.0.0.1'; // Not needed for RedistoGo
//config.redis.port = '6379'; // Not needed for RedistoGo
//config.redis.pass = 'myredispass'; // Not needed for RedistoGo
/* ==========================================================
* Misc
* ========================================================== */
config.google = {};
config.google.analytics = 'UA-xxxyyzzz-1';
module.exports = config;