- Add DEPLOYMENT.md for 1Panel deployment guide with troubleshooting - Add README.md with project architecture and quick start guide - Update .gitignore to exclude development docs (openspec/, CLAUDE.md, etc.) - Unify port configuration via .env (BACKEND_PORT, FRONTEND_PORT, MINIO_API_PORT, MINIO_CONSOLE_PORT) - Update start-dev.sh and check-env.sh to read ports from .env 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
58 lines
569 B
Plaintext
58 lines
569 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Python cache
|
|
.cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
|
|
# Database
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.docker
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
tests/__pycache__/
|
|
|
|
# Project specific
|
|
task_reporter.db
|
|
server.log
|
|
|
|
# Node.js / Frontend
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
frontend/.cache/
|
|
.eslintcache
|
|
|
|
# Development scripts
|
|
.pids/
|
|
logs/
|
|
|
|
# Development documentation (AI/OpenSpec)
|
|
openspec/
|
|
AGENTS.md
|
|
CLAUDE.md
|
|
PROGRESS.md
|
|
.claude/
|