Run a Echo app locally, install nothing besides nanobox.
# clone the code
git clone https://github.com/nanobox-quickstarts/nanobox-echo.git
# cd into the echo app
cd nanobox-echo
# Add a convenient way to access your app from a browser
nanobox dns add local echo.dev
# Run Echo as you would normally, with Nanobox
nanobox run go run server.go
Visit your app at echo.dev:1323
With Nanobox, you don't have to have anything installed on your machine to run your app:
# drop into a Nanobox console
nanobox run
# where golang is installed,
go version
# git is installed,
git --version
# and your code is mounted
ls
For more details about running Echo apps with nanobox visit guides.nanobox.io/golang/echo/