Go to file
Ryan X. Charles 37c20b47ac Merge pull request #124 from colkito/fix/angularjs-digest-issue
removed a updateBalance call from header.js
2014-04-22 18:29:51 -03:00
bin add File storage class and tests 2014-04-16 21:12:27 -03:00
css Merge pull request #125 from cmgustavo/feature/05-send-form 2014-04-22 18:26:42 -03:00
font fix #10 remove google fonts 2014-04-01 12:16:33 -03:00
img logo + new button style + join-page 2014-03-31 18:06:44 -03:00
js Merge pull request #124 from colkito/fix/angularjs-digest-issue 2014-04-22 18:29:51 -03:00
lib send tx 2014-04-19 11:23:24 -03:00
test safe unspent 2014-04-21 12:41:48 -03:00
util fix browser tests 2014-04-17 18:56:45 -03:00
.bowerrc move all files to root path 2014-03-21 14:21:13 -03:00
.gitignore make things easier to install 2014-04-20 16:06:56 -03:00
.travis.yml add travis.yml 2014-04-14 15:38:36 -03:00
API.js make my code work with the latest interface changes 2014-04-16 21:13:35 -03:00
Gruntfile.js improving UI and wording for signing page 2014-04-21 12:17:15 -03:00
README.md add simplest possible express server to host files 2014-04-20 16:46:03 -03:00
app.js add simplest possible express server to host files 2014-04-20 16:46:03 -03:00
bower.json added support for the wallet backups 2014-04-17 18:02:20 -03:00
concat.sh copay tests in the browser! 2014-04-07 15:31:41 -03:00
config.template.js make things easier to install 2014-04-20 16:06:56 -03:00
copay.js fix browser tests 2014-04-16 21:39:42 -03:00
index.html Merge pull request #125 from cmgustavo/feature/05-send-form 2014-04-22 18:26:42 -03:00
karma.conf.js added karma test framework and network skeleton 2014-03-21 18:45:59 -03:00
package.json version 0.0.5 2014-04-21 13:23:18 -03:00

README.md

Copay

Installation:

Copy config.template.js to config.js and edit to suit your needs. (Defaults to public PeerJS and Insight servers)

Then execute these commands:

npm install
bower install
grunt --target=dev shell
node app.js

To run on a different port:

PORT=3001 node app.js

To open up five different instances to test 3-of-5 multisig with yourself, then run this in 5 different terminals:

PORT=3001 node app.js
PORT=3002 node app.js
PORT=3003 node app.js
PORT=3004 node app.js
PORT=3005 node app.js