Distributed application powered by Hyperledger Sawtooth to store exclusive clothing brands products.
Implementation of blockchain based Distributed Ledger Technology system for storing unique product's data, on the example of exclusive clothing brands garments. In the created system the physical identification of products can be achieved using special copy-proof ScanTrust QR codes embedded in clothes labels.
Every registered change of a product owner is stored in the distributed ledger, consisting of fashion companies, shops, and consumers.This solution gives many opportunities such as checking product authenticity, its owners history as well as protecting buyers from purchasing stolen products.
Execute the start script to install all dependencies and run network nodes:
./start.sh
Connect to client node
docker exec -it fashion-client /bin/bash
Start web backend:
cd /root/web_backend/
nohup python3 manage.py runserver 0.0.0.0:8888 &
Start web frontend:
cd /root/web_frontend/
nohup npm start &