- Complete Astro + Alpine.js implementation - Docker Compose setup with Caddy reverse proxy - Dual platform: Anonymous & Named Storytellers - Interactive features: voting, comments, filtering - Categories page with search functionality - Content collections for markdown stories - Responsive design with accessibility features - Environment variable configuration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
536 B
Bash
21 lines
536 B
Bash
# Development Environment Variables
|
|
DOMAIN=st.l.supported.systems
|
|
|
|
# Site Configuration
|
|
PUBLIC_SITE_URL=https://st.l.supported.systems
|
|
PUBLIC_API_BASE_URL=https://st.l.supported.systems/api
|
|
|
|
# Platform Configuration
|
|
PUBLIC_ANONYMOUS_PLATFORM_NAME="Anonymous Storytellers"
|
|
PUBLIC_NAMED_PLATFORM_NAME="Named Storytellers"
|
|
|
|
# Analytics (optional)
|
|
# PUBLIC_ANALYTICS_ID=
|
|
|
|
# Contact Information
|
|
PUBLIC_CONTACT_EMAIL=stories@st.l.supported.systems
|
|
|
|
# Features
|
|
PUBLIC_ENABLE_COMMENTS=true
|
|
PUBLIC_ENABLE_VOTING=true
|
|
PUBLIC_ENABLE_PROMOTION=true |