iris/iris
Makis Maropoulos 386201f73a Make iris easier for glide users
I am not pushing the /vendor package to this repository because of
possibility to break the framework. See here:
https://github.com/mattfarina/golang-broken-vendor
2016-06-30 17:33:08 +03:00
..
create.go Fix iris create, package's dependencies are downloaded automatically when a package is installed 2016-06-30 06:43:29 +03:00
doc.go Make iris easier for glide users 2016-06-30 17:33:08 +03:00
main.go Fix https://github.com/kataras/iris/issues/237 2016-06-28 10:19:17 +03:00
README.md iris run main.go - prints the iris' logger but doesn't prints the banner everytime 2016-06-24 09:28:40 +03:00
run.go Fix https://github.com/kataras/iris/issues/237 2016-06-28 10:19:17 +03:00

Package information

This package is the command line tool for ../.

Iris help screen

Iris installed screen

Install

Current version: 0.0.8


go get -u github.com/kataras/iris/iris

Usage

$ iris [command] [-flags]

Note that you must have $GOPATH/bin to your $PATH system/environment variable.

create

The create command creates for you a start project in a directory

iris create -t basic -d myprojects/iris1

Will create the basic sample package to the $GOPATH/src/myprojects/iris1 directory and run the app.

iris create -t static  -d myprojects/iris1

Will create the static sample package to the $GOPATH/src/myprojects/iris1 directory and run the app.

The default

iris create

Will create the basic sample package to $GOPATH/src/myiris directory and run the app.

iris create -d myproject

Will create the basic sample package to the $GOPATH/src/myproject folder and run the app.

run

The run command runs & reload on file changes your Iris station

It's like go run but with directory watcher and re-run on .go file changes.

iris run main.go

Iris CLI run showcase

Iris CLI run showcase linux

version

iris version

Will print the current Iris' installed version to your machine