Files
test-sites/README.md
T

723 B

Test Static Site

Test repository for Docker Watcher's Static Sites feature.

Structure

pages/
├── index.html          # Main page
├── style.css           # Styles
├── app.js              # Client-side JS
└── api/
    ├── time.ts         # GET /api/time — server time
    ├── hello.ts        # GET /api/hello?name=X — greeting with env var
    └── echo.ts         # POST /api/echo — echo request body

API Convention

Functions prefixed with API_ are auto-routed:

  • API_get in api/time.tsGET /api/time
  • API_post in api/echo.tsPOST /api/echo

Environment Variables

  • GREETING_PREFIX — custom greeting prefix (default: "Hello")