46 lines
562 B
Text
46 lines
562 B
Text
# Build artifacts
|
|
**/*.pyc
|
|
**/__pycache__/
|
|
**/.pytest_cache/
|
|
**/.venv/
|
|
**/venv/
|
|
**/*.egg-info/
|
|
**/dist/
|
|
**/build/
|
|
|
|
# Node
|
|
**/node_modules/
|
|
**/.next/
|
|
**/npm-debug.log
|
|
**/.turbo/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!standalone/.env.standalone
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Test and dev files
|
|
**/tests/
|
|
local-db/
|
|
logs/
|
|
|
|
# Documentation (except standalone README)
|
|
README.md
|
|
!standalone/README.md
|
|
|
|
# Standalone files
|
|
standalone/build-docker.sh
|
|
standalone/.dockerignore
|
|
standalone/.env.example
|
|
standalone/docker-compose.yml
|