- Backend: Express + TypeORM + PostgreSQL, JWT + OTP auth - Frontend: React + Vite + Tailwind, 4 pages (Home/Login/Orders/404) - Docker Compose: PostgreSQL 15 on port 5434 - Tests: 16 tests passing (API + Frontend) - ai_state: rules.md, INSTRUCTIONS.md, session tasks - Examples: brand book PDF, logos, page mockups
54 lines
594 B
Plaintext
54 lines
594 B
Plaintext
node_modules/
|
|
**/node_modules/
|
|
dist/
|
|
**/dist/
|
|
build/
|
|
**/build/
|
|
out/
|
|
|
|
# Environment variables (секреты)
|
|
.env
|
|
**/.env
|
|
.env.local
|
|
!.env.example
|
|
!**/.env.example
|
|
|
|
# Editor / IDE
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Cache
|
|
.cache/
|
|
.npm/
|
|
.turbo/
|
|
coverage/
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Docker volumes (данные БД не должны попадать в репозиторий)
|
|
postgres_data/
|
|
file_uploads/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
venv/
|
|
.venv/
|
|
|
|
# Trash (см. rules.md §6.11)
|
|
trash/
|