https://github.com/stynamic/tender-system
Tender System is a decentralized application build over Ethereum blockchain. It helps to create, pass and manage the tenders.
https://github.com/stynamic/tender-system
metamask react redux solidity truffle web3js
Last synced: 27 days ago
JSON representation
Tender System is a decentralized application build over Ethereum blockchain. It helps to create, pass and manage the tenders.
- Host: GitHub
- URL: https://github.com/stynamic/tender-system
- Owner: stynamic
- Created: 2022-06-17T06:01:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-17T11:26:18.000Z (almost 4 years ago)
- Last Synced: 2025-03-24T06:34:15.411Z (about 1 year ago)
- Topics: metamask, react, redux, solidity, truffle, web3js
- Language: JavaScript
- Homepage: https://tender-system.vercel.app/
- Size: 574 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tender-system
Tender System is a decentralized application build over Ethereum blockchain. It helps to create, pass and manage the tenders.
----
STEP 1:
Clone the repository and install packages
* clone
`$ git clone https://github.com/stynamic/tender-system.git`
`$ cd tender-system`
* install dependency packages
`$ npm install`
STEP 2:
Edit files
* `truffle-config.js` file
rinkeby network, change `'MNEMONIC'` and `'RPC_ENDPOINT'`
local test network, change `host` and `port` with respective local network
* `provider.js` file (locate `src/utils/provider.js`)
change `'RPC_ENDPOINT'`
STEP 3:
Install truffle
* run
`$ npm install -g truffle`
STEP 4:
Compile and Deploy
* to compile
`$ truffle compile`
add `--all` flag to override previous build
* to deploy
local network, `$ truffle migrate`
rinkeby network, `$ truffle migrate --network rinkeby`
add `--reset` flag to override previous migration
STEP 5:
Start the server
* run
`$ npm start`