https://github.com/jeffcore/ethereum-starter-project
Basic starter code for an Ethereum development environment using Docker containers.
https://github.com/jeffcore/ethereum-starter-project
blockchain docker ethereum ethereum-dapp ganache-cli truffle
Last synced: 5 months ago
JSON representation
Basic starter code for an Ethereum development environment using Docker containers.
- Host: GitHub
- URL: https://github.com/jeffcore/ethereum-starter-project
- Owner: jeffcore
- Created: 2021-03-07T16:25:42.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-24T15:06:18.000Z (almost 5 years ago)
- Last Synced: 2024-06-13T04:04:53.494Z (about 2 years ago)
- Topics: blockchain, docker, ethereum, ethereum-dapp, ganache-cli, truffle
- Language: Elixir
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ethereum Starter Project using Docker Containers
Solidity 0.7.4 using Truffle and Ganache CLI.
## How to use
1. git clone this repo
2. install docker
3. cd to root of project
4. run $ docker-compose up ganache
5. run $ docker-compose build truffle
6. run $ docker-compose up truffle
7. connect to truffle container $ docker attach truffle
8. while inside the truffle container run $ truffle init
9. while inside the truffle container run $ npm install
10. exit truffle container
11. on local machine cd to dapp directory and delete truffle-config.js
12. rename truffle-config.js.ex to truffle-config.js
13. when you are ready to deploy to Ropsten test net, add the mnemonic key into .secret file
## Now the hard part
Build a blockchain app or your own coin and create your own personal money faucet.