Created
September 17, 2020 11:46
-
-
Save antonbabenko/e61482fa3cfbf8a0810b1b8367b1396b to your computer and use it in GitHub Desktop.
Show GitHub sponsors as markdown using apex-up
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone [email protected]:tj/sponsors-api.git | |
cd sponsors-api | |
# Install up ( https://github.com/apex/up ) | |
curl -sf https://up.apex.sh/install | sh | |
# Build the binary | |
GOOS=linux GOARCH=amd64 go build -o server cmd/sponsors-api/main.go | |
# Create config for up | |
UP_URL=$(up url) # this will be empty for the first run because API Gateway is not yet created | |
cat > up.json <<EOF | |
{ | |
"name": "sponsors-api", | |
"regions": [ | |
"eu-west-1" | |
], | |
"environment": { | |
"GITHUB_TOKEN": "$(secrethub read antonbabenko/private/github)", | |
"URL": "$UP_URL" | |
} | |
} | |
EOF | |
# Switch to correct AWS profile: | |
aws-vault exec --debug --no-session private-anton | |
# Deploy it live | |
up | |
open $(up url) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment