1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-19 19:07:06 +00:00

Fix and improve the iris cmd according to this: https://github.com/kataras/iris/issues/506

This commit is contained in:
Gerasimos Maropoulos
2016-10-23 07:20:39 +03:00
parent fc9cd0a8c2
commit 9958337e5d
8 changed files with 266 additions and 246 deletions

View File

@@ -2,17 +2,21 @@ package main // import "github.com/kataras/iris/iris"
/*
go get -u github.com/kataras/iris/iris
- install iris command line tool
$ go get -u github.com/kataras/iris/iris
// create command
create an empty folder, open the command prompt/terminal there, type and press enter:
- get command
Downloads the mongo sample project prototype, open this folder to your explorer,
builds, runs and watches for source code changes (hot-reload).
iris create
$ iris get mongo
// run command
navigate to your app's directory and execute:
- run command
Runs and monitors for source code changes(hot-reload).
$ cd mysites/site1
$ iris run main.go
iris run main.go
*/