Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michalswi/simple-web-server
simple Go http web server
https://github.com/michalswi/simple-web-server
azure azure-app-services docker golang simple-web-server
Last synced: about 2 months ago
JSON representation
simple Go http web server
- Host: GitHub
- URL: https://github.com/michalswi/simple-web-server
- Owner: michalswi
- License: mit
- Created: 2021-06-24T10:15:59.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-10T09:36:27.000Z (8 months ago)
- Last Synced: 2024-06-21T02:18:41.342Z (7 months ago)
- Topics: azure, azure-app-services, docker, golang, simple-web-server
- Language: Makefile
- Homepage: https://michalswi.medium.com/azure-app-services-the-way-to-run-your-golang-app-22a56c45682f
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## **Simple Web Server**
![](https://img.shields.io/github/issues/michalswi/simple-web-server)
![](https://img.shields.io/github/forks/michalswi/simple-web-server)
![](https://img.shields.io/github/stars/michalswi/simple-web-server)
![](https://img.shields.io/github/last-commit/michalswi/simple-web-server)This is just POC to test Golang App with Azure App Services.
[Link](https://docs.microsoft.com/en-us/azure/app-service/) to Azure App Services.
[Link](https://docs.microsoft.com/en-us/azure/app-service/overview#next-steps) how to deploy using other languages than Go.Golang Apps are not natively supported in App Services. To deploy I am using [custom containers](https://docs.microsoft.com/en-us/azure/app-service/deploy-container-github-action?tabs=publish-profile).
### # local environment
```
$ makeUsage:
makeTargets:
build Build bin
run Run app
docker-build Build docker image
docker-run Run docker
docker-stop Stop docker
```### # important
If you use **non-root** user in Dockerfile, app might **not** work in Azure App Services (requires root).