mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 22:56:43 +00:00
* Add deploy workflow with hardhat * Rm hardhat deployments dir * Add contract deploy script * Add dev goodies for quick use during development * Update deps * Use custom script for contract deployment * Add info about deploy.ts * Add step to show docker logs after contract deployment * Add building of new image with deployed contract * Add dynamic wait for geth to be up instead of sleep * Print container logs while waiting for geth * Update container cmd * dbg * dbg * Update args * Fix push image * dbg * Fix build command typo * Update README * Update README * Allow deploy workflow to run only when PR is merged in master and has label CI:Deploy
76 lines
1.2 KiB
Text
76 lines
1.2 KiB
Text
# See http://help.github.com/ignore-files/ for more about ignoring files.
|
|
#
|
|
# If you find yourself ignoring temporary files generated by your text editor
|
|
# or operating system, you probably want to add a global ignore instead:
|
|
# git config --global core.excludesfile ~/.gitignore_global
|
|
|
|
*/**/*un~
|
|
*/**/*.test
|
|
*un~
|
|
.DS_Store
|
|
*/**/.DS_Store
|
|
|
|
#*
|
|
.#*
|
|
*#
|
|
*~
|
|
.project
|
|
.settings
|
|
|
|
# used by the Makefile
|
|
/build/_workspace/
|
|
/build/cache/
|
|
/build/bin/
|
|
/geth*.zip
|
|
|
|
# used by the build/ci.go archive + upload tool
|
|
/geth*.tar.gz
|
|
/geth*.tar.gz.sig
|
|
/geth*.tar.gz.asc
|
|
/geth*.zip.sig
|
|
/geth*.zip.asc
|
|
|
|
|
|
# travis
|
|
profile.tmp
|
|
profile.cov
|
|
|
|
# IdeaIDE
|
|
.idea
|
|
*.iml
|
|
|
|
# VS Code
|
|
.vscode
|
|
|
|
tests/spec-tests/
|
|
|
|
# binaries
|
|
cmd/abidump/abidump
|
|
cmd/abigen/abigen
|
|
cmd/blsync/blsync
|
|
cmd/clef/clef
|
|
cmd/devp2p/devp2p
|
|
cmd/era/era
|
|
cmd/ethkey/ethkey
|
|
cmd/evm/evm
|
|
cmd/geth/geth
|
|
cmd/rlpdump/rlpdump
|
|
cmd/workload/workload
|
|
|
|
hardhat/node_modules
|
|
hardhat/.env
|
|
|
|
# Hardhat files
|
|
hardhat/cache
|
|
hardhat/artifacts
|
|
|
|
# TypeChain files
|
|
hardhat/typechain
|
|
hardhat/typechain-types
|
|
|
|
# solidity-coverage files
|
|
hardhat/coverage
|
|
hardhat/coverage.json
|
|
|
|
# Hardhat Ignition default folder for deployments against a local node
|
|
hardhat/ignition/deployments/chain-31337
|