Magic: The Gathering marketplace using blockchain technology with Ethereum
First of all, install Ethereum tools: geth or testrpc and truffle.
Now, in one terminal, run a blockchain with geth or testrpc. The latter is recommended for development purposes because it processes blocks much faster than the former.
$ testrpcIf you prefer using geth, use the provided script make_private_net.sh. It clears all previous blockchains and run a new one. When asked, insert the password: abcd.
$ ./make_private_net.sh
Password: abcdNow, in another terminal, run the project with the script start.sh. It deploys all contracts and update the front-end with the correct contract address.
$ ./start.shYou can access the project at http://localhost:8080.