76 lines
810 B
Text
76 lines
810 B
Text
# macOS system files
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
.python-version
|
|
.env
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
|
|
# Node/React
|
|
node_modules/
|
|
/frontend/build
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Project specific
|
|
.env
|
|
backend/uploads/*
|
|
!backend/uploads/.gitkeep
|
|
backend/outputs/*
|
|
!backend/outputs/.gitkeep
|
|
backend/auth.json
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.iml
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
.vs/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|