45 lines
546 B
Plaintext
45 lines
546 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env/
|
|
venv/
|
|
pip-wheel-metadata/
|
|
.installed.cfg
|
|
*.egg-info/
|
|
pip-selfcheck.json
|
|
|
|
# Node.js
|
|
node_modules/
|
|
dist/
|
|
.npm/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IDE / Editor specific
|
|
.vscode/
|
|
.idea/
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Uploads
|
|
# Comment out the line below if you want to track uploaded files in git
|
|
# Keep it uncommented to prevent tracking user-uploaded content
|
|
uploads/
|