Add .gitignore file #1
28
.gitignore/.gitignore
vendored
Normal file
28
.gitignore/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
# Ignore Python bytecode and caches
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
|
||||||
|
# Ignore virtual environment directories
|
||||||
|
venv/
|
||||||
|
env/
|
||||||
|
|
||||||
|
# Ignore Node modules
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Ignore compiled output directories
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
out/
|
||||||
|
|
||||||
|
# Ignore logs and temporary files
|
||||||
|
*.log
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
# Ignore IDE specific files
|
||||||
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
*.iml
|
||||||
|
|
||||||
|
# OS generated files
|
||||||
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
Loading…
Reference in New Issue
Block a user