Commit Graph

2 Commits

Author SHA1 Message Date
fae14a5083 fix: Nginx routing for subdirectory index.html files
Updated try_files directive to check for index.html in subdirectories
before falling back to root index.html. This fixes /sdk routing.

Before: try_files $uri $uri/ /index.html;
After: try_files $uri $uri/index.html /index.html;

Now /sdk correctly serves /sdk/index.html instead of root index.html

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-19 21:48:22 +01:00
cf01a75179 feat: Add SilverSHELL SDK documentation page with downloadable templates
Added comprehensive SDK page at /sdk with:
- Downloadable SilverSHELL starter template (6.3 KB)
- Downloadable SilverSHELL module template (14 KB)
- Quick start guide with step-by-step instructions
- Creating applications guide (configuration, UI, manual install)
- Creating modules guide with template options
- Publishing modules guide (automated CI/CD + manual)
- Available modules list from library.silverlabs.uk
- Resources and support links

Initial commit includes:
- Complete static website with Docker deployment
- SilverLabs branding and styling
- Nginx configuration for production serving

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-19 21:36:57 +01:00