Skip to content

Commit

Permalink
Merge PR dappuniversity#2
Browse files Browse the repository at this point in the history
  • Loading branch information
KinectTheUnknown committed Mar 11, 2021
2 parents 1c6d899 + 0f0eadb commit b1ae634
Show file tree
Hide file tree
Showing 12 changed files with 6,590 additions and 6,413 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/src/built-contracts
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"cSpell.words": [
"bignumber",
"browserslist",
"noopener",
"noreferrer"
]
}
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# nft
Crypto Collectible NFT Tutorial with ERC-721 Tokens

## Dependencies <br/>
Install these prerequisites to continue

NPM: https://nodejs.org <br/>
Truffle: https://github.com/trufflesuite/truffle <br/>
Ganache: http://truffleframework.com/ganache/ <br/>
Metamask: https://metamask.io/ <br/>
<br/>
## Step 1. Clone the project
```bash
https://github.com/dappuniversity/nft.git
```

## Step 2. Install dependencies
```bash
cd nft
npm install
```
## Step 3. Start Ganache
Open the Ganache GUI client that you downloaded and installed. This will start your local blockchain instance.

## Step 4. Compile & Deploy Election Smart Contract
```truffle migrate --reset``` You need to migrate contract in order to deploy in your local system
## Step 5. Configure Metamask
-Unlock Metamask <br/>
-Connect metamask to your local Ethereum blockchain provided by Ganache.<br/>
-Import an account provided by ganache.<br/>
## Step 6. Run the Front End Application
```
cd src
npm start
```
Now you Blockchain web-app is served on http://localhost:8000
Loading

0 comments on commit b1ae634

Please sign in to comment.