slack status without the slack status.zzstoatzz.io/
quickslice

fix: improve dev mode UI and configuration

- Fix capitalization: "You've reached" -> "you've reached"
- Add tooltip to dev indicator explaining it shows dummy data
- Add DEV_MODE environment variable to .env.template with documentation
- Prepare configuration for preview build deployment

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

+5 -2
+3
.env.template
··· 4 4 PUBLIC_URL="" # Set when deployed publicly, e.g. "https://mysite.com". Informs OAuth client id. 5 5 # DB_PATH="./statusphere.sqlite3" # The SQLite database path. Leave commented out to use a temporary in-memory database. 6 6 7 + # Dev Mode Configuration 8 + DEV_MODE="false" # Enable dev mode for testing with dummy data. Access via ?dev=true query parameter when enabled. 9 + 7 10
+2 -2
templates/feed.html
··· 60 60 <div class="feed-header-with-indicator"> 61 61 <h2>recent updates</h2> 62 62 {% if dev_mode %} 63 - <div class="dev-indicator">dev</div> 63 + <div class="dev-indicator" title="dev mode: showing dummy data mixed with real posts">dev</div> 64 64 {% endif %} 65 65 </div> 66 66 ··· 115 115 116 116 <!-- End of feed indicator --> 117 117 <div id="end-of-feed" style="display: none; text-align: center; padding: 2rem;"> 118 - <span style="color: var(--text-tertiary);">You've reached the beginning of time ✨</span> 118 + <span style="color: var(--text-tertiary);">you've reached the beginning of time ✨</span> 119 119 </div> 120 120 </div> 121 121