Built motion from commit 22bc4a4.|0.0.16
[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   seedDB: true
13 };