deploy/deploy.sh — automated deploy: arch detection, scp .app, write seed.json, verify. Supports single laptop, list, or "all"; --seed-only flag skips .app copy for key-rotation runs. deploy/devices.conf — all 19 laptops (num / IP / event_device_id). deploy/event.env.example — template for gitignored event.env (API key). README updated: deploy/ table, script usage, manual steps moved to reference section. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
700 B
Plaintext
16 lines
700 B
Plaintext
# event.env — Per-event deployment config for deploy.sh
|
|
# Copy this file to event.env and fill in the values before deploying.
|
|
# event.env is gitignored — never commit it (contains the API key).
|
|
#
|
|
# AETHER_API_KEY: shared across all laptops for this event deployment.
|
|
# Create in Aether admin (Core → Accounts or Events → Devices API key section)
|
|
# before the show. Delete after the show.
|
|
#
|
|
# ONSITE_API_BASE_URL: set to the local onsite API if running one (e.g.
|
|
# http://192.168.32.1/api). Leave blank to use null (cloud-only mode).
|
|
|
|
AETHER_API_KEY="your_api_key_here"
|
|
PRIMARY_API_BASE_URL="https://api.oneskyit.com"
|
|
BACKUP_API_BASE_URL="https://bak-api.oneskyit.com"
|
|
ONSITE_API_BASE_URL=""
|