Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gauravtiwari/go_iris_app
A basic web app built in Iris web framework for Golang
https://github.com/gauravtiwari/go_iris_app
Last synced: 18 days ago
JSON representation
A basic web app built in Iris web framework for Golang
- Host: GitHub
- URL: https://github.com/gauravtiwari/go_iris_app
- Owner: gauravtiwari
- Created: 2016-07-22T09:05:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-11-05T17:04:14.000Z (about 5 years ago)
- Last Synced: 2024-11-17T15:55:55.294Z (about 1 month ago)
- Language: Go
- Size: 4.42 MB
- Stars: 20
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# A basic web app built in Iris web framework for Go
![overview screen](readme_screen.png)
## Getting started
1. Install Go (Golang)
* Using [Brew](https://brew.sh/).
* Or by navigating to https://golang.org/dl.
2. Download & Install [Iris](https://iris-go.com) using go get: `go get -u github.com/kataras/iris`
3. Clone the repository.
4. Run the web app: `go run app.go````bash
$ brew install go
$ go get -u github.com/kataras/iris
$ cd $GOPATH/src/
$ git clone https://github.com/iris-contrib/go_iris_app.git
$ cd ./go_iris_app
$ go run app.go
```