106 lines
2.6 KiB
Plaintext
106 lines
2.6 KiB
Plaintext
# =============================================================================
|
|
# Codex Pool - Git Ignore
|
|
# =============================================================================
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# IDE & Editor
|
|
# ------------------------------------------------------------------------------
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Go
|
|
# ------------------------------------------------------------------------------
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Backend build output
|
|
backend/codex-pool.exe
|
|
backend/codex-pool
|
|
backend/test_browser_auth.exe
|
|
backend/test_browser_auth
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Node.js / Frontend
|
|
# ------------------------------------------------------------------------------
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Data & Database
|
|
# ------------------------------------------------------------------------------
|
|
data/
|
|
*.db
|
|
*.db-journal
|
|
*.db-shm
|
|
*.db-wal
|
|
backend/codex-pool.db
|
|
backend/*.db
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Accounts & Sensitive
|
|
# ------------------------------------------------------------------------------
|
|
accounts*.json
|
|
backend/accounts*.json
|
|
*.pem
|
|
*.key
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Build & Cache
|
|
# ------------------------------------------------------------------------------
|
|
dist/
|
|
build/
|
|
*.cache
|
|
.cache/
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Logs
|
|
# ------------------------------------------------------------------------------
|
|
*.log
|
|
logs/
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Other Projects (if in same workspace)
|
|
# ------------------------------------------------------------------------------
|
|
TeamRegAPI/
|
|
sub2api/
|
|
team-reg-go/
|
|
check_ban.py
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Temporary
|
|
# ------------------------------------------------------------------------------
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
.kiro/specs/codex-pool-frontend/design.md
|
|
.kiro/specs/codex-pool-frontend/requirements.md
|
|
.kiro/specs/codex-pool-frontend/tasks.md
|
|
backend/codex-pool.exe
|
|
backend/codex-pool.exe
|
|
.claude/settings.local.json
|
|
CodexAuth
|
|
get_code.go
|