-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
34 lines (29 loc) · 867 Bytes
/
config.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
(function (global) {
'use strict';
/**
* Configuration File for Cublet's API Backend
* The following must be setup by you, manually, in any environment you
* choose to deploy Cublet/BackendAPI in. This file manages holding secrets
* like app keys, customizable welcome messages and other sorts of settings.
*
* It is important that you try to keep this file as private as possible.
*/
var packageInfo = require('./package.json'),
config = {
versionNumber: packageInfo.version.split('.')[0],
portNumber: 8000,
greeterMessage: 'Welcome to Cublet\'s API. For more ' +
'information, check out https://github.com/Cublet/BackendAPI',
Mongoose: {
debug: true,
connectionUri: ''
},
jwtSecret: '',
staticFileLocation: 'public',
facebook: {
appId: '',
appSecret: ''
}
};
module.exports = config;
}(global));