@@ -20,35 +20,6 @@ CRON_SECRET="local-cron-secret"
2020RESEND_HTTP_PORT = " 9011"
2121RESEND_API_KEY = " mock-resend-key"
2222
23- # Upstash-compatible Redis mock for rate limits + cron keepalive keys (local
24- # and on GitHub Actions, production on Vercel)
25- UPSTASH_HTTP_PORT = " 8079"
26- UPSTASH_REDIS_PORT = " 6380"
27- UPSTASH_TOKEN = " local-dev-token"
28-
29- # Vercel Marketplace Integration for Upstash Redis used with rate limiting on API endpoints
30- # (local and on GitHub Actions, production on Vercel)
31- KV_URL = " redis://default:local-dev-token@127.0.0.1:6380"
32- KV_REST_API_URL = " http://127.0.0.1:8079"
33- KV_REST_API_TOKEN = " local-dev-token"
34- KV_REST_API_READ_ONLY_TOKEN = " local-dev-token"
35- REDIS_URL = " redis://default:local-dev-token@127.0.0.1:6380"
36-
37- # Supabase configuration
38- # - SUPABASE_URL / SUPABASE_KEY: client + server runtime credentials used in Astro and API routes.
39- # - SUPABASE_SERVICE_ROLE_KEY: server-side key for tests and cron endpoints (never expose to browser).
40- # - SUPABASE_HEALTH_TIMEOUT: controls how long we wait for the local Supabase container to become healthy.
41- # - SUPABASE_DB_PASSWORD / SUPABASE_PROJECT_REF / SUPABASE_ACCESS_TOKEN: only needed when pushing
42- # migrations to the hosted project (GitHub "build" workflow). Leave them empty locally unless you
43- # have production access.
44- SUPABASE_HEALTH_TIMEOUT = " 240"
45- SUPABASE_URL = " http://127.0.0.1:54321"
46- SUPABASE_KEY = " sb_publishable_example"
47- SUPABASE_SERVICE_ROLE_KEY = " sb_secret_example"
48- SUPABASE_DB_PASSWORD = " example-db-password"
49- SUPABASE_PROJECT_REF = " exampleprojectref"
50- SUPABASE_ACCESS_TOKEN = " sbp_example_personal_access_token"
51-
5223# Observability / external services
5324SENTRY_AUTH_TOKEN = " dev-placeholder-sentry-token"
5425SENTRY_DSN = " https://examplePublicKey@o0.ingest.sentry.io/0"
@@ -60,3 +31,8 @@ VERCEL_ORG_ID="team_C7kQw5vXn0PfH3sJt2Gb9LrY"
6031
6132# Used for social shares on Mastodon
6233WEBMENTION_IO_TOKEN = " dev-webmention-token"
34+
35+ # Astro DB - local file-backed dev database (token unused for file connections)
36+ ASTRO_DB_REMOTE_URL = " file:./.astro/content.db"
37+ ASTRO_DB_APP_TOKEN = " "
38+ # ASTRO_DATABASE_FILE must be exported in the shell (see README)
0 commit comments