69a232d08a
- FastAPI: POST /api/v1/events, GET /health, JSON Schema validation - PostgreSQL models, Alembic migration, bootstrap API key - deploy/docker-compose.yml, .env.example - docs/install-ubuntu-24.04.md, updated work-plan (agents first)
38 lines
342 B
Plaintext
38 lines
342 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
deploy/.env
|
|
|
|
# Node / frontend (будущее)
|
|
node_modules/
|
|
dist/
|
|
.nuxt/
|
|
.output/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Runtime / deploy secrets
|
|
/config/local.yaml
|
|
/deploy/*.local.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Data
|
|
*.db
|
|
pgdata/
|
|
|
|
# Logs
|
|
*.log
|