At the moment I do not intend to work on this project. I still think this would be a great idea however I have moved on (which does not mean I might not come back to it).
Ship my stuff is a peer-to-peer delivery service. Think of it as some sort of a decentralized 'Uber for parcels'. The basic intended use would be something along those lines (User A - Sender, User B - Hauler/Transporter, User C - Recipient):
Clone repository from github using git:
git clone https://github.com/syeo66/ship-my-stuff.git
First start Ganache on port 8545.
ganache-cli
and then build the dApp
cd ship-my-stuff # if you're not yet in this folder
npm install
truffle compile
truffle migrate
npm run build # Important! Needs to be after truffle migrate
Just to make sure: npm run build
is required after truffle migrate
(also in development environment) to make sure the contract information is available for the Javascript-App.
npm run dev
Then you should be able to see the interface on http://localhost:3000/
First start Ganache using
ganache-cli
The used port should be 8545. Then start the tests using:
truffle test
The interface is available in public at https://gateway.ipfs.io/ipns/ship-my-stuff.com/ or - because ipns is rather slow - also hosted at https://ship-my-stuff.com/.
There is a contract available on the Rinkeby network at 0xacc26d36721192206f3aff0b82b549bf3ebb4e06 and on the Ropsten network at sms.redochsenbein.eth (0xe4a65634c6a154cbcb18d70a06942e5cb152568f).
The Registry contract can be found at Rinkeby 0x06e5f834f4e6c34de2478d82e8d78755a2fb1498 and Ropsten sms-registry.redochsenbein.eth (0x9dbacbe623634998e04925a4496aba0b3fc5e77a).
By clicking on the connection indicator on the top right you can open a configuration screen which allows you to set the IPFS node to be used. If you are not using MetaMask you can also set the Ethereum node url and your unlocked account address.