A comprehensive knowledge base and documentation for Axioned's development practices, tools, and processes.
.
├── public/ # Static assets
├── src/
│ ├── assets/ # Images and other media
│ ├── content/ # Documentation content
│ │ ├── docs/ # Main documentation
│ │ └── config.ts
│ └── env.d.ts
├── astro.config.mjs
├── package.json
└── tsconfig.json
src/content/docs/
contains all documentation in Markdown format- Each
.md
file becomes a route in the documentation - Images should be placed in
src/assets/
and referenced in Markdown - Static assets (favicons, etc.) go in
public/
All commands are run from the root of the project:
Command | Action |
---|---|
npm install |
Install dependencies |
npm run dev |
Start local dev server at localhost:4321 |
npm run build |
Build production site to ./dist/ |
npm run preview |
Preview production build locally |
- Create a new branch for your changes
- Follow the Code Review Checklist
- Submit a PR with clear description of changes
- Ensure all documentation is clear and well-formatted
- Check Starlight's docs for documentation features
- Join #handbook for requests and support