Built motion from commit fd239ea.|0.0.31
[motion.git] / server / config / environment / production.js
1 'use strict';
2
3 var dbconf = require('./dbconf.json').production;
4 var dbconfhistory = require('./dbconfhistory.json').production;
5 var astconf = require('./astconf.json').production;
6 // Production specific configuration
7 // ==================================
8 module.exports = {
9   db: dbconf, // MySQL connection options
10   db_history: dbconfhistory, // MySQL connection options
11   asterisk: astconf, // Asterisk connection options
12   provisioning: 'https://www.xcallymotion.com/api',
13   seedDB: false,
14   seedPDB: true
15 };