https://github.com/emilhein/go-aws-webserver
A small webserver written in Go, to perform simple tasks on your AWS ressources
https://github.com/emilhein/go-aws-webserver
aws go-api go-websocket-server websocket-server
Last synced: 10 months ago
JSON representation
A small webserver written in Go, to perform simple tasks on your AWS ressources
- Host: GitHub
- URL: https://github.com/emilhein/go-aws-webserver
- Owner: emilhein
- License: apache-2.0
- Created: 2019-10-23T07:27:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-14T15:29:06.000Z (over 3 years ago)
- Last Synced: 2025-05-18T05:35:29.752Z (about 1 year ago)
- Topics: aws, go-api, go-websocket-server, websocket-server
- Language: Go
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/emilhein/go-aws-webserver)
Example [here](https://github.com/emilhein/go-heroku-server)
# go-aws-webserver
A small webserver written in Go, to perform simple tasks on your AWS ressources
### How to use
NOTE: Remeber to set aws credentials when you deploy this server
Make sure you have AWS credentials available on your computer:
Windows: C:\Users\{USERNAME}\.aws\credentials
```
package main
import (
"github.com/emilhein/go-aws-webserver/webserver"
)
func main() {
webserver.Start()
}
```
Now you have a webserver with some already defined endpoints for your AWS ressources.
For now the most usefull endpoint is:
POST: localhost:3000/getS3files
A POST body request in postman could look like this:
```
{
"bucket" : "YOUR_BUCKET",
"filepaths" : ["json_file_1", "json_file_2"]
}
```