flosight-api/config/env/development.js
Manuel Araoz ead58e1e52 Merge branch 'master' of github.com:bitpay/mystery into feature/p2p-import
Conflicts:
	app/controllers/transactions.js
	app/models/Transaction.js
	config/env/development.js
	lib/Sync.js
	test/model/block.js
2014-01-10 16:12:11 -03:00

17 lines
337 B
JavaScript
Executable File

'use strict';
module.exports = {
db: "mongodb://localhost/mystery-dev",
app: {
name: "Mystery - Development"
},
bitcoind: {
user: 'mystery',
pass: 'real_mystery',
protocol: 'http',
host: process.env.BITCOIND_HOST || '127.0.0.1',
port: process.env.BITCOIND_PORT || '18332',
},
network: 'testnet',
}