https://github.com/flexdinesh/tools-wiki
https://github.com/flexdinesh/tools-wiki
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/flexdinesh/tools-wiki
- Owner: flexdinesh
- Created: 2026-04-29T04:53:32.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-06-11T01:21:37.000Z (about 1 month ago)
- Last Synced: 2026-06-11T03:12:43.103Z (about 1 month ago)
- Language: MDX
- Homepage: https://toolswiki.deebox.dev
- Size: 209 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# tools wiki
A searchable collection of cheatsheets and quick-reference guides for developer tools. Built with [Astro Starlight](https://starlight.astro.build).
## Structure
Each tool gets a single Markdown file. Subdirectories map to URL hierarchy:
```
src/content/docs/
├── git.md → /git/
├── tmux.md → /tmux/
└── neovim/
└── grug-far.md → /neovim/grug-far/
```
## Adding a tool
1. Create `src/content/docs/{tool}.md` (or a subdirectory)
2. Add frontmatter:
```yaml
---
title: tool-name
draft: false
head: []
---
```
3. Organize content under `##` sections with fenced code blocks
## Development
```bash
pnpm install
pnpm run dev # starts at http://localhost:4321
pnpm run build # outputs to dist/
```
## Docker
```bash
docker build -t tools-wiki .
docker run -p 8080:80 tools-wiki
```