tailwind_truffle_starter_kit
tailwind_truffle_starter_kit copied to clipboard
A truffle-tailwind-based web3 error-free starter kit free for speeding up your blockchain development process. Feel free to leave a star.
Truffle-Tailwind-React Web3 Starter Kit
Speedily develope your decentralized application with this starter kit for free!
Follow the steps below to download, install, and run this project.
Dependencies
Install these prerequisites to follow along with the tutorial. See free video tutorial or a full explanation of each prerequisite.
- NPM: https://nodejs.org
- Truffle: https://github.com/trufflesuite/truffle
- Ganache-CLI: https://docs.nethereum.com/en/latest/ethereum-and-clients/ganache-cli/
- Tailwind CSS: https://tailwindcss.com/
Step 1. Clone the project
git clone https://github.com/Daltonic/tailwind_truffle_starter_kit <PROJECT NAME>
Step 2. Install dependencies
$ cd <PROJECT NAME>
$ yarn install # or npm install
Step 3. Start Ganache-CLI
Open the terminal and run the command below.
$ ganache-cli
Step 4. Compile & Deploy Smart Contract
$ truffle migrate --reset
Migrate your smart contract each time your restart ganache.
Step 5. Run the Front End Application
$ yarn start
Visit this URL in your browser: http://localhost:3000