mirror of
https://github.com/leonvanzyl/autocoder.git
synced 2026-02-05 16:33:08 +00:00
- Remove embedded documentation system (18 files) from main UI:
- Delete ui/src/components/docs/ (DocsPage, DocsContent, DocsSidebar,
DocsSearch, docsData, and all 13 section components)
- Delete ui/src/hooks/useHashRoute.ts (only used for docs routing)
- Simplify ui/src/main.tsx: remove Router component, render App directly
inside QueryClientProvider (no more hash-based routing)
- Update docs button in App.tsx header to open https://autoforge.cc in
a new tab instead of navigating to #/docs hash route
- Add logo to header
- Add temp-docs/ to .gitignore
- Update CLAUDE.md with current architecture documentation
The documentation has been extracted into a separate repository and
deployed as a standalone Vite + React site at https://autoforge.cc.
This reduces the main UI bundle and decouples docs from app releases.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
161 lines
1.9 KiB
Plaintext
161 lines
1.9 KiB
Plaintext
# Agent-generated output directories
|
|
generations/
|
|
automaker/
|
|
temp/
|
|
temp-docs/
|
|
|
|
nul
|
|
issues/
|
|
|
|
# Browser profiles for parallel agent execution
|
|
.browser-profiles/
|
|
|
|
# Log files
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# ===================
|
|
# Node.js
|
|
# ===================
|
|
node_modules/
|
|
.npm
|
|
.yarn-integrity
|
|
.node_repl_history
|
|
|
|
# ===================
|
|
# Python
|
|
# ===================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
eggs/
|
|
.eggs/
|
|
*.manifest
|
|
*.spec
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
env/
|
|
.env.bak/
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
|
|
# Unit test / coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
coverage/
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
nosetests.xml
|
|
ui/playwright-report/
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
.ruff_cache/
|
|
|
|
# ===================
|
|
# Claude Code
|
|
# ===================
|
|
.claude/settings.local.json
|
|
|
|
# ===================
|
|
# IDE / Editors
|
|
# ===================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.spyderproject
|
|
.spyproject
|
|
.ropeproject
|
|
|
|
# ===================
|
|
# OS generated files
|
|
# ===================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# ===================
|
|
# Build outputs
|
|
# ===================
|
|
ui/dist/
|
|
ui/.vite/
|
|
.vite/
|
|
*.tgz
|
|
|
|
# ===================
|
|
# Environment files
|
|
# ===================
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.*.local
|
|
|
|
# ===================
|
|
# Cache directories
|
|
# ===================
|
|
.cache/
|
|
.parcel-cache/
|
|
.eslintcache
|
|
.stylelintcache
|
|
|
|
# ===================
|
|
# Lock files (except package-lock.json)
|
|
# ===================
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
poetry.lock
|
|
Pipfile.lock
|
|
|
|
# ===================
|
|
# TypeScript
|
|
# ===================
|
|
*.tsbuildinfo
|
|
|
|
# ===================
|
|
# Misc
|
|
# ===================
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|
|
.tmp/
|
|
.temp/
|
|
tmpclaude-*-cwd
|
|
ui/test-results/
|