diff options
| -rw-r--r-- | app/.assetsignore | 3 | ||||
| -rwxr-xr-x | veroeffentlichen.sh | 5 | ||||
| -rw-r--r-- | wrangler.jsonc | 8 |
3 files changed, 16 insertions, 0 deletions
diff --git a/app/.assetsignore b/app/.assetsignore new file mode 100644 index 0000000..b77c14b --- /dev/null +++ b/app/.assetsignore @@ -0,0 +1,3 @@ +.DS_Store +.claude +README.md diff --git a/veroeffentlichen.sh b/veroeffentlichen.sh new file mode 100755 index 0000000..c288b4e --- /dev/null +++ b/veroeffentlichen.sh @@ -0,0 +1,5 @@ +#!/bin/sh +# Veröffentlicht die Webanwendung als Cloudflare-Worker „bav“. +set -eu +cd "$(dirname "$0")" +exec npx --yes wrangler@latest deploy "$@" diff --git a/wrangler.jsonc b/wrangler.jsonc new file mode 100644 index 0000000..17aea76 --- /dev/null +++ b/wrangler.jsonc @@ -0,0 +1,8 @@ +{ + "name": "bav", + "compatibility_date": "2026-08-22", + "assets": { + "directory": "./app", + "not_found_handling": "single-page-application" + } +} |
