commit 3f983cbf2c356a558ea13258d373a53e679f8963 parent 62edf0bf7915fc3931aac6027488aee0634d912b Author: Michael Camilleri <[email protected]> Date: Fri, 5 Jun 2026 14:19:22 +0900 Rename directory to Workers Diffstat:
7 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/AGENTS.md b/AGENTS.md @@ -17,6 +17,7 @@ Use this file for orientation only; inspect the current filesystem and code befo - `Tests/` contains the unit test suite. - `Scripts/` contains common build/test/development scripts. - `Puzzles/` contains bundled and debug puzzle resources. +- `Workers/` contains Cloudflare Workers for realtime engagement and push notifications. - `Crossmake/` is the separate offline crossword generation utility. It is an SPM package used to author bundled puzzles, not part of the app build. CloudKit sync uses raw `CKSyncEngine` with per-game zones and `CKShare` collaboration. It does not use NSPersistentCloudKitContainer or SwiftData. diff --git a/Scripts/wrangle-egmt.sh b/Scripts/wrangle-egmt.sh @@ -4,4 +4,4 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" -exec wrangler --config "$REPO_ROOT/Worker/wrangler.engagement.toml" "$@" +exec wrangler --config "$REPO_ROOT/Workers/wrangler.engagement.toml" "$@" diff --git a/Scripts/wrangle-push.sh b/Scripts/wrangle-push.sh @@ -4,4 +4,4 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" -exec wrangler --config "$REPO_ROOT/Worker/wrangler.push.toml" "$@" +exec wrangler --config "$REPO_ROOT/Workers/wrangler.push.toml" "$@" diff --git a/Worker/engagement-worker.js b/Workers/engagement-worker.js diff --git a/Worker/push-worker.js b/Workers/push-worker.js diff --git a/Worker/wrangler.engagement.toml b/Workers/wrangler.engagement.toml diff --git a/Worker/wrangler.push.toml b/Workers/wrangler.push.toml