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
- Host: GitHub
- URL: https://github.com/ajsalemo/go-deployment-samples
- Owner: Ajsalemo
- Created: 2022-10-29T00:43:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-26T21:32:49.000Z (almost 3 years ago)
- Last Synced: 2025-10-19T13:39:09.982Z (9 months ago)
- Topics: azure, beego, containers, docker, gin, go, goji, golang, martini
- Language: Go
- Homepage:
- Size: 14.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)