An open API service indexing awesome lists of open source software.

https://github.com/ajsalemo/go-deployment-samples

Various Go web framework examples
https://github.com/ajsalemo/go-deployment-samples

azure beego containers docker gin go goji golang martini

Last synced: 3 months ago
JSON representation

Various Go web framework examples

Awesome Lists containing this project

README

          

# go-deployment-samples
Various Go web framework examples

To run these examples locally and then deploy, do the following:

1. After cloning this repository, `cd` to any of these framework directories and run `go mod tidy`.
2. Run `go run main.go`.
3. To deploy, for example with Local Git:
- Run `git init`
- Add the remote repository with `git remote add azure `
- Add and commit - `git add .` followed by `git commit "initial commit"`
- Push to the remote - `git push azure master`


Frameworks:
- [Beego](https://github.com/beego/beego)
- [Fiber](https://docs.gofiber.io/)
- [Gin](https://gin-gonic.com/)
- [Goji](https://goji.io/)
- [Martini](https://github.com/go-martini/martini)