Test endpoints

## hello (GET)
https://test-rest-api.kitboga.net/hello

## retrieve status
https://test-rest-api.kitboga.net/status/502

## echo (POST)
https://test-rest-api.kitboga.net/echo

## AWS event details (POST/GET)
https://test-rest-api.kitboga.net/event

UbuntuX

Ubuntu + Aws cli + FFmpeg + yt-dlp

#env variables
docker run  -it --rm  --env-file ./.env ajcm/ubuntux:latest  /scripts/aws/env.sh

## list buckets
docker run  -it --rm  --env-file ./.env ajcm/ubuntux:latest  aws s3api  list-buckets

## create bucket
docker run  -it --rm  --env-file ./.env ajcm/ubuntux:latest  aws s3api create-bucket --bucket junk.kitboga.s3 --create-bucket-configuration LocationConstraint=eu-west-1

## copy file
docker run  -it --rm  -v ${PWD}:/mnt/pwd --env-file ./.env ajcm/ubuntux:latest aws s3 cp /mnt/pwd/notes.txt  s3://junk.kitboga.s3

AWS Manager (S3)

S3 Bucket management UI

docker run --env-file=.env  -p 8080:8080  ajcm/aws-manager

.env

AWS_ACCESS_KEY_ID=..
AWS_SECRET_ACCESS_KEY=...
AWS_DEFAULT_REGION=eu-west-1