forked from bitpay/insight-api
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bitpay#76 from colkito/feature/change-mystery-to-i…
…nsight rename project to Insight -- great movement!
- Loading branch information
Showing
27 changed files
with
72 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,3 @@ block content | |
#error-stack-trace | ||
pre | ||
code!= error | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,3 @@ extends layouts/default | |
|
||
block content | ||
section.container(data-ng-view) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "Mystery", | ||
"name": "Insight", | ||
"version": "0.0.1", | ||
"dependencies": { | ||
"angular": "latest", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
db: "mongodb://localhost/mystery-dev", | ||
db: 'mongodb://localhost/insight-dev', | ||
app: { | ||
name: "Mystery - Development" | ||
name: 'Insight - Development' | ||
}, | ||
bitcoind: { | ||
protocol: process.env.BITCOIND_PROTO || 'http', | ||
user: process.env.BITCOIND_USER || 'mystery', | ||
pass: process.env.BITCOIND_PASS || 'real_mystery', | ||
user: process.env.BITCOIND_USER || 'user', | ||
pass: process.env.BITCOIND_PASS || 'pass', | ||
host: process.env.BITCOIND_HOST || '127.0.0.1', | ||
port: process.env.BITCOIND_PORT || '18332', | ||
disableAgent: true, | ||
}, | ||
network: 'testnet', | ||
disableP2pSync: false, | ||
disableHistoricSync: false, | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
db: "mongodb://localhost/mystery", | ||
db: 'mongodb://localhost/insight', | ||
app: { | ||
name: "Mystery - Production" | ||
name: 'Insight - Production' | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
db: "mongodb://localhost/mystery-test", | ||
db: 'mongodb://localhost/insight-test', | ||
app: { | ||
name: "Mystery - Test" | ||
name: 'Insight - Test' | ||
}, | ||
port: '3301', | ||
bitcoind: { | ||
protocol: process.env.BITCOIND_PROTO || 'http', | ||
user: process.env.BITCOIND_USER || 'mystery', | ||
pass: process.env.BITCOIND_PASS || 'real_mystery', | ||
user: process.env.BITCOIND_USER || 'user', | ||
pass: process.env.BITCOIND_PASS || 'pass', | ||
host: process.env.BITCOIND_HOST || '127.0.0.1', | ||
port: process.env.BITCOIND_PORT || '18332', | ||
disableAgent: true, | ||
}, | ||
network: 'testnet', | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
rpcuser=mystery | ||
rpcpassword=real_mystery | ||
rpcuser=user | ||
rpcpassword=pass | ||
server=1 | ||
txindex=1 | ||
|
||
# Allow connections outsite localhost? | ||
rpcallowip=192.168.1.* | ||
rpcallowip='192.168.1.*' | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
'use strict'; | ||
|
||
angular.module('mystery', | ||
angular.module('insight', | ||
['ngAnimate', | ||
'ngCookies', | ||
'ngResource', | ||
'ngRoute', | ||
'ui.bootstrap', | ||
'ui.route', | ||
'mystery.system', | ||
'mystery.socket', | ||
'mystery.blocks', | ||
'mystery.transactions', | ||
'insight.system', | ||
'insight.socket', | ||
'insight.blocks', | ||
'insight.transactions', | ||
'monospaced.qrcode', | ||
'mystery.address', | ||
'mystery.search', | ||
'mystery.status' | ||
'insight.address', | ||
'insight.search', | ||
'insight.status' | ||
]); | ||
|
||
angular.module('mystery.system', []); | ||
angular.module('mystery.socket', []); | ||
angular.module('mystery.blocks', []); | ||
angular.module('mystery.transactions', []); | ||
angular.module('mystery.address', []); | ||
angular.module('mystery.search', []); | ||
angular.module('mystery.status', []); | ||
angular.module('insight.system', []); | ||
angular.module('insight.socket', []); | ||
angular.module('insight.blocks', []); | ||
angular.module('insight.transactions', []); | ||
angular.module('insight.address', []); | ||
angular.module('insight.search', []); | ||
angular.module('insight.status', []); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.