Some checks failed
Deploy / deploy (push) Failing after 19s
tsconfig.json, tsconfig.app.json, and tsconfig.node.json were never committed because *.json was gitignored without exceptions for them. Added whitelist entries and restored Dockerfile to use npm run build (tsc -b + vite) now that the config files are present. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
66 lines
727 B
Plaintext
66 lines
727 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# Virtual environments
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Output / generated data
|
|
*.csv
|
|
*.log
|
|
|
|
# JSON — keep fixture, airport data, and frontend manifests
|
|
*.json
|
|
!data/airports_by_country.json
|
|
!tests/confirmed_flights.json
|
|
!frontend/package.json
|
|
!frontend/package-lock.json
|
|
!frontend/tsconfig.json
|
|
!frontend/tsconfig.app.json
|
|
!frontend/tsconfig.node.json
|
|
|
|
# Database files
|
|
*.db
|
|
|
|
# Node
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
!frontend/src/lib/
|