- 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>
8 lines
283 B
Bash
Executable File
8 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Create caddy network if it doesn't exist
|
|
docker network ls | grep caddy > /dev/null || docker network create caddy
|
|
|
|
echo "Caddy network ready!"
|
|
echo "Now you can run: docker compose up -d"
|
|
echo "Your app will be available at: https://${DOMAIN:-st.l.supported.systems}" |