An entry for the streamplace vod showcase
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 39 lines 1.7 kB view raw
1# Streamhut Environment Variables 2# Copy this to .env and fill in your values 3 4# ============================================================================= 5# AT Protocol Authentication (for CLI) 6# ============================================================================= 7# Set via `npm run login` - stores session in ~/.at-run/ 8 9# ============================================================================= 10# AppView Bundle - Turso Database 11# ============================================================================= 12# Get these from https://turso.tech dashboard 13TURSO_URL=libsql://your-database.turso.io 14TURSO_AUTH_TOKEN=your-auth-token 15 16# ============================================================================= 17# VOD Bundle - AppView Connection (Optional) 18# ============================================================================= 19# URL to your deployed AppView bundle 20# If not set, falls back to stream.place directly 21APPVIEW_URL=https://at-run.mainasara.dev/bundle/did:plc:xxx/streamhut-appview/latest 22 23# ============================================================================= 24# Frontend - Vite 25# ============================================================================= 26# URL to your at-run runner 27VITE_RUNNER_URL=https://at-run.mainasara.dev 28 29# Bundle path (DID/bundle-name/version) 30VITE_BUNDLE_PATH=bundle/did:plc:xxx/atmosphereconf-vod/latest 31 32# ============================================================================= 33# Runner Configuration 34# ============================================================================= 35# Port for the runner server 36PORT=3000 37 38# Enable development mode (hot reload, verbose logging) 39DEV=true