https://github.com/parsabordbar/ctx3docs
The Documentation for context Tree Project.
https://github.com/parsabordbar/ctx3docs
ai-tools context ctx3 ctx3-docs data-analysis documentation tree workflow
Last synced: about 6 hours ago
JSON representation
The Documentation for context Tree Project.
- Host: GitHub
- URL: https://github.com/parsabordbar/ctx3docs
- Owner: ParsaBordbar
- Created: 2026-04-18T13:04:24.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-21T16:23:38.000Z (about 1 month ago)
- Last Synced: 2026-05-21T23:40:45.158Z (about 1 month ago)
- Topics: ai-tools, context, ctx3, ctx3-docs, data-analysis, documentation, tree, workflow
- Language: TypeScript
- Homepage: https://parsabordbar.github.io/ctx3Docs/
- Size: 1.7 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ctx3 Docs
Documentation site for [ctx3](https://github.com/parsabordbar/ctx3) and deployed to GitHub Pages at [parsabordbar.github.io/ctx3](https://parsabordbar.github.io/ctx3/).
## Local Development
```bash
npm install
npm start
```
Opens a browser window at `http://localhost:3000/ctx3/`. Most changes are reflected live without restarting the server.
## Build
```bash
npm run build
```
Generates static output into the `build/` directory. Test the production build locally with:
```bash
npm run serve
```
## Deployment
The site deploys automatically to GitHub Pages via GitHub Actions on every push to `main` that touches the `docs/` folder. See [`.github/workflows/deploy-docs.yml`](../.github/workflows/deploy-docs.yml).
To deploy manually:
```bash
GIT_USER=parsabordbar npm run deploy
```
> Make sure GitHub Pages is set to **GitHub Actions** as the source under Settings → Pages.