pylon-workers 0.3.23

Pylon — realtime backend as a single Rust binary. Schema, policies, server functions, live queries, auth — one process.
Documentation
name = "pylon"
main = "build/worker/shim.mjs"
compatibility_date = "2024-12-01"

[build]
command = "cargo install worker-build && worker-build --release"

# D1 database binding — create with:
#   wrangler d1 create pylon
[[d1_databases]]
binding = "PYLON_DB"
database_name = "pylon"
database_id = ""  # Fill in after `wrangler d1 create`

# Environment variables
[vars]
PYLON_DEV_MODE = "false"

# Secrets (set via `wrangler secret put`):
#   PYLON_ADMIN_TOKEN
#   PYLON_AI_API_KEY (optional)

# Durable Objects for WebSocket rooms (future)
# [durable_objects]
# bindings = [
#   { name = "ROOM", class_name = "RoomDO" }
# ]

# Cron triggers for scheduled jobs (future)
# [triggers]
# crons = ["*/5 * * * *"]