Completes the documentation reorganization by migrating all /learn content to proper locations and removing the legacy /learn directory. Changes: - Migrated 10 unique files from /learn to appropriate sections: - features/notifications, keyboard, environment, browser, platform - concepts/manager-api - contributing/architecture/bindings - reference/runtime - guides/build/customization - Removed /learn directory and 22 legacy files - Updated sidebar navigation: - Removed "Learn" section - Added Manager API to Core Concepts - Reorganized Features with new subdirectories - Added Build Customization to Guides - Added Binding System to Contributing/Architecture - Fixed missing Card/CardGrid imports in 12 feature files - Cleaned up stale d2 SVG files All /features content verified to be more comprehensive than /learn versions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| .vscode | ||
| public | ||
| src | ||
| .gitignore | ||
| .npmrc | ||
| astro.config.mjs | ||
| AUDIT_CHECKLIST.md | ||
| AUDIT_FILES_MANIFEST.txt | ||
| AUDIT_INDEX.md | ||
| AUDIT_QUICK_REFERENCE.md | ||
| AUDIT_SUMMARY.txt | ||
| build-output.txt | ||
| bun.lock | ||
| CNAME | ||
| COMPLETE_SUMMARY.md | ||
| create-dirs.ps1 | ||
| DOCUMENTATION_AUDIT_REPORT.md | ||
| DOCUMENTATION_REDESIGN_STATUS.md | ||
| DOCUMENTATION_STATUS.md | ||
| FINAL_PROJECT_STATUS.md | ||
| FINAL_STATUS.md | ||
| FINAL_SUMMARY.md | ||
| IMPLEMENTATION_SUMMARY.md | ||
| NEXT_STEPS.md | ||
| package-lock.json | ||
| package.json | ||
| PHASE1_COMPLETE.md | ||
| PHASE1_PROGRESS.md | ||
| PHASE2_COMPLETE_FINAL.md | ||
| PHASE2_COMPLETION.md | ||
| PHASE2_PROGRESS.md | ||
| PHASE3_PLAN.md | ||
| PROGRESS_REPORT.md | ||
| PROJECT_HANDOFF.md | ||
| README.md | ||
| README_AUDIT.md | ||
| README_DOCUMENTATION.md | ||
| REDESIGN_COMPLETE.md | ||
| REDESIGN_PROGRESS.md | ||
| SESSION_COMPLETE.md | ||
| Taskfile.yml | ||
| tsconfig.json | ||
| WORK_SUMMARY.md | ||
Wails v3 Documentation
World-class documentation for Wails v3, redesigned following Netflix documentation principles.
📚 Documentation Redesign (2025-10-01)
This documentation has been completely redesigned to follow the Netflix approach to developer documentation:
- Problem-first framing - Start with why, not what
- Progressive disclosure - Multiple entry points for different skill levels
- Real production examples - No toy code
- Story-Code-Context pattern - Why → How → When
- Scannable content - Clear structure, visual aids
Status: Foundation complete (~20%), ready for content migration
See IMPLEMENTATION_SUMMARY.md for full details.
🚀 Project Structure
Inside of your Astro + Starlight project, you'll see the following folders and files:
.
├── public/
├── src/
│ ├── assets/
│ ├── content/
│ │ ├── docs/
│ │ └── config.ts
│ └── env.d.ts
├── astro.config.mjs
├── package.json
└── tsconfig.json
Starlight looks for .md or .mdx files in the src/content/docs/ directory.
Each file is exposed as a route based on its file name.
Images can be added to src/assets/ and embedded in Markdown with a relative
link.
Static assets, like favicons, can be placed in the public/ directory.
🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |
npm run astro ... |
Run CLI commands like astro add, astro check |
npm run astro -- --help |
Get help using the Astro CLI |
👀 Want to learn more?
Check out Starlight’s docs, read the Astro documentation, or jump into the Astro Discord server.