Blockchain Prototype - Supplay Chain Lab - Part of the course https://www.udemy.com/course/blockchain-developer/
⚠️ Disclaimer: That project is for educational purposes only, it was not tested enough for production!
A item creation and status management controll using ganache, truffle and react
- Install Ganache
- Install Node Package Manager
- Clone this repository:
git clone
- Install dependencies going to main folder of the project using powershell and typing:
npm install
- Do the same in the client folder:
npm install
- Adjust truffle-config.js with your Ganache settings (port and network_id)
- Start ganache
- Take first Ganache account private keys and import an account in metamask using it
- In main folder run truffle tests:
truffle test --network ganache
- Migrate smart contracts to Ganache:
truffle migrate --reset --network ganache
- In client folder:
npm start