bashrc 549 B

12345678910111213141516171819202122
  1. export ROOT="${GOPATH}/src/github.com/ethereum/go-ethereum"
  2. export PATH="${ROOT}/swarm/dev/bin:${PATH}"
  3. cd "${ROOT}/swarm/dev"
  4. cat <<WELCOME
  5. =============================================
  6. Welcome to the swarm development environment.
  7. - Run 'make' to build the swarm, geth and bootnode binaries
  8. - Run 'make test' to run the swarm unit tests
  9. - Run 'make cluster' to start a swarm cluster
  10. - Run 'exit' to exit the development environment
  11. See the 'scripts' directory for some useful scripts.
  12. =============================================
  13. WELCOME