https://github.com/wfykitty/artech
The decentralized art platform provides the art buyer and artist to trade digital art.
https://github.com/wfykitty/artech
art blockchain erc721 ethereum nodejs react smartcontracts web3
Last synced: about 1 month ago
JSON representation
The decentralized art platform provides the art buyer and artist to trade digital art.
- Host: GitHub
- URL: https://github.com/wfykitty/artech
- Owner: wfykitty
- Created: 2020-08-15T21:32:54.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-12T02:11:19.000Z (over 5 years ago)
- Last Synced: 2025-06-08T06:08:45.676Z (about 1 year ago)
- Topics: art, blockchain, erc721, ethereum, nodejs, react, smartcontracts, web3
- Language: JavaScript
- Homepage:
- Size: 59.8 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Artech demo - NFT - art trading platform

--
### slides


--
### Instructions to run the app
Before running the DApp , make sure to install and run ganache-cli [make sure it is hosted in http://127.0.0.1:7545]
In the main folder ,run these followng commands
truffle migrate
The smart contracts will be deployed to ganache
Navigate to dapp folder and run these commands
npm install
npm audit fix (if shows error)
npm run-script startall
Note:In previous command , we run 2 scripts parallel for express and react with the help of npm-run-all , as seen in package.json
```
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"nodeserver": "nodemon server.js",
"startall": "run-p nodeserver start"
}
```
The React app will be hosted on http://localhost:3000/ and node-express on http://locahost:8000/ (it is used to store the uploaded image in the local drive).
---