mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 06:31:27 -07:00
26 lines
1.5 KiB
Bash
26 lines
1.5 KiB
Bash
# Base domain all service hosts are derived from, e.g. accounts.<domain>.
|
|
RECFLARE_DOMAIN=rec.example.com
|
|
|
|
# Optional per-app subdomain overrides, as a compact JSON object keyed by the
|
|
# worker's directory name. Defaults to the directory name when unset.
|
|
# RECFLARE_SUBDOMAINS='{"playersettings":"settings"}'
|
|
|
|
# Id of the shared `recflare` D1 database (create it manually with
|
|
# `wrangler d1 create recflare`). All D1-backed workers bind this one database.
|
|
# Kept out of the committed wrangler.jsonc (which uses a "local" placeholder) and
|
|
# spliced in at deploy time. Required to deploy any worker that uses D1.
|
|
# RECFLARE_D1=d44083e1-5bfe-4467-aa9a-f13c5c2496d5
|
|
|
|
# KV namespace ids, as a compact JSON object keyed by binding name. Each namespace
|
|
# is distinct (create with `wrangler kv namespace create <BINDING>`). Kept out of
|
|
# the committed wrangler.jsonc (which uses "local" placeholders) and spliced in at
|
|
# deploy time. Required to deploy any worker with the matching KV binding.
|
|
# RECFLARE_KV='{"RECFLARE_MATCH_PRESENCE":"9f53f04b7dd244658d59f515a14748b6","RECFLARE_PLAYER_SETTINGS":"d33a90014e904b0eac720bddcbe0b036"}'
|
|
|
|
# Id of the shared Secrets Store that holds the `JWT_SECRET` signing key (create it
|
|
# with `wrangler secrets-store store create recflare --scopes workers`). Every
|
|
# worker binds this one store as JWT_SECRET so auth-signed tokens verify everywhere.
|
|
# Kept out of the committed wrangler.jsonc (which uses a "local" placeholder) and
|
|
# spliced in at deploy time. Required to deploy any worker.
|
|
# RECFLARE_SECRETS_STORE=00000000-0000-0000-0000-000000000000
|