Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / config / environment / development.js
1 'use strict';
2
3 var dbconf = require('./dbconf.json').development;
4 var dbconfhistory = require('./dbconfhistory.json').development;
5 var astconf = require('./astconf.json').development;
6 // Development 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: true,
14   seedPDB: false
15 };