Skip to content

Instantly share code, notes, and snippets.

View davidwtbuxton's full-sized avatar

David Buxton davidwtbuxton

View GitHub Profile
@davidwtbuxton
davidwtbuxton / README.md
Created April 8, 2025 10:01
Minimal Python + App Engine standard deployment
@davidwtbuxton
davidwtbuxton / compose.yaml
Created April 24, 2025 08:18
Docker compose with an nginx proxy for a Python app
# Nginx will listen on localhost:8080, serving static assets and doing gzip compression.
services:
app:
image: python:3.13-alpine
ports: ["8000:8000"]
command: ["python", "-m", "http.server"]
nginx:
build: