2025-12-14 11:30:22 -08:00
|
|
|
# Markdown Blog - Tasks
|
|
|
|
|
|
2025-12-20 11:05:38 -08:00
|
|
|
## To Do
|
|
|
|
|
|
2025-12-20 12:24:07 -08:00
|
|
|
- [ ] add componet fork fix for stats
|
2025-12-20 11:05:38 -08:00
|
|
|
- [ ] Add blog page list and config
|
|
|
|
|
- [ ] add github code block
|
2025-12-20 12:24:07 -08:00
|
|
|
- [ ] add home to mobile menu
|
2025-12-20 11:05:38 -08:00
|
|
|
- [ ] Add markdown write page with copy option
|
|
|
|
|
- [ ] create a ui site config page
|
2025-12-20 12:24:07 -08:00
|
|
|
- [ ] create a prompt formator or skill or agent to change everything at once after forking
|
2025-12-20 11:05:38 -08:00
|
|
|
- [ ] Add app background image option
|
|
|
|
|
|
2025-12-14 11:30:22 -08:00
|
|
|
## Current Status
|
|
|
|
|
|
2025-12-20 11:05:38 -08:00
|
|
|
v1.10.0 ready for deployment. Build passes. TypeScript verified. Documentation updated.
|
2025-12-14 11:30:22 -08:00
|
|
|
|
|
|
|
|
## Completed
|
|
|
|
|
|
2025-12-20 11:05:38 -08:00
|
|
|
- [x] Fork configuration documentation in docs.md and setup-guide.md
|
|
|
|
|
- [x] "Files to Update When Forking" section with all 9 configuration files
|
|
|
|
|
- [x] Backend configuration examples for Convex files
|
|
|
|
|
- [x] Site branding updates across all AI discovery files
|
|
|
|
|
- [x] Fork documentation added to README.md
|
|
|
|
|
- [x] Blog post updated with v1.9.0 and v1.10.0 features
|
|
|
|
|
- [x] Scroll-to-top button with configurable threshold
|
|
|
|
|
- [x] Scroll-to-top documentation in docs.md and setup-guide.md
|
|
|
|
|
- [x] Mobile menu with hamburger navigation for mobile and tablet
|
|
|
|
|
- [x] Generate Skill feature in CopyPageDropdown
|
2025-12-14 11:30:22 -08:00
|
|
|
- [x] Project setup with Vite + React + TypeScript
|
|
|
|
|
- [x] Convex schema for posts, viewCounts, siteConfig, pages
|
|
|
|
|
- [x] Build-time markdown sync script
|
|
|
|
|
- [x] Theme system (dark/light/tan/cloud)
|
|
|
|
|
- [x] Default theme configuration (tan)
|
|
|
|
|
- [x] Home page with year-grouped post list
|
|
|
|
|
- [x] Post page with markdown rendering
|
|
|
|
|
- [x] Static pages support (About, Projects, Contact)
|
|
|
|
|
- [x] Syntax highlighting for code blocks
|
|
|
|
|
- [x] Open Graph and Twitter Card meta tags
|
|
|
|
|
- [x] Netlify edge function for bot detection
|
|
|
|
|
- [x] RSS feed support (standard and full content)
|
|
|
|
|
- [x] API endpoints for LLMs (/api/posts, /api/post)
|
|
|
|
|
- [x] Copy Page dropdown for AI tools
|
|
|
|
|
- [x] Sample blog posts and pages
|
|
|
|
|
- [x] Security audit completed
|
|
|
|
|
- [x] TypeScript type-safety verification
|
|
|
|
|
- [x] Netlify build configuration verified
|
|
|
|
|
- [x] SPA 404 fallback configured
|
|
|
|
|
- [x] Mobile responsive design
|
2025-12-14 17:00:46 -08:00
|
|
|
- [x] Edge functions for dynamic Convex HTTP proxying
|
|
|
|
|
- [x] Vite dev server proxy for local development
|
2025-12-14 23:07:11 -08:00
|
|
|
- [x] Real-time stats page at /stats
|
|
|
|
|
- [x] Page view tracking with event records pattern
|
|
|
|
|
- [x] Active session heartbeat system
|
|
|
|
|
- [x] Cron job for stale session cleanup
|
|
|
|
|
- [x] Stats link in homepage footer
|
2025-12-17 22:02:52 -08:00
|
|
|
- [x] Real-time search with Command+K shortcut
|
|
|
|
|
- [x] Search modal with keyboard navigation
|
|
|
|
|
- [x] Full text search indexes for posts and pages
|
2025-12-18 12:28:25 -08:00
|
|
|
- [x] Featured section with list/card view toggle
|
|
|
|
|
- [x] Logo gallery with continuous marquee scroll
|
|
|
|
|
- [x] Frontmatter-controlled featured items (featured, featuredOrder)
|
|
|
|
|
- [x] Featured items sync with npm run sync (no redeploy needed)
|
2025-12-18 12:47:07 -08:00
|
|
|
- [x] Firecrawl content importer (npm run import)
|
|
|
|
|
- [x] /api/export endpoint for batch content fetching
|
|
|
|
|
- [x] AI plugin discovery at /.well-known/ai-plugin.json
|
|
|
|
|
- [x] OpenAPI 3.0 spec at /openapi.yaml
|
|
|
|
|
- [x] AGENTS.md for AI coding agents
|
2025-12-20 11:05:38 -08:00
|
|
|
- [x] Static raw markdown files at /raw/{slug}.md
|
|
|
|
|
- [x] View as Markdown option in CopyPageDropdown
|
|
|
|
|
- [x] Perplexity added to AI service options
|
|
|
|
|
- [x] Featured image support with square thumbnails in card view
|
|
|
|
|
- [x] Improved markdown table CSS styling
|
2025-12-14 11:30:22 -08:00
|
|
|
|
|
|
|
|
## Deployment Steps
|
|
|
|
|
|
|
|
|
|
1. Run `npx convex dev` to initialize Convex
|
2025-12-14 17:00:46 -08:00
|
|
|
2. Set `CONVEX_DEPLOY_KEY` in Netlify environment variables
|
|
|
|
|
3. Connect repo to Netlify and deploy
|
|
|
|
|
4. Edge functions automatically handle RSS, sitemap, and API routes
|
2025-12-14 11:30:22 -08:00
|
|
|
|
2025-12-20 11:05:38 -08:00
|
|
|
## Someday Features TBD
|
2025-12-14 11:30:22 -08:00
|
|
|
|
|
|
|
|
- [ ] Related posts suggestions
|
|
|
|
|
- [ ] Newsletter signup
|
|
|
|
|
- [ ] Comments system
|
|
|
|
|
- [ ] Draft preview mode
|
|
|
|
|
- [ ] Image optimization
|
|
|
|
|
- [ ] Reading progress indicator
|