Run a Iris app locally, install nothing besides nanobox.
# clone the code
git clone https://github.com/nanobox-quickstarts/nanobox-iris.git
# cd into the iris app
cd nanobox-iris
# Add a convenient way to access your app from the browser
nanobox dns add local iris.dev
# Install dependencies
nanobox run go get -v
# Run Iris as you would normally, with Nanobox
nanobox run go run main.go
Visit your app at iris.dev
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
# your packages are available,
git --version
# and your code is mounted
ls
For more details about running Iris apps with nanobox visit guides.nanobox.io/golang/iris/