23 lines
311 B
Plaintext
23 lines
311 B
Plaintext
|
# Ignore Python byte code files
|
||
|
__pycache__/
|
||
|
*.pyc
|
||
|
*.pyo
|
||
|
*.pyd
|
||
|
|
||
|
/config.json
|
||
|
|
||
|
# Ignore the virtual environment directory
|
||
|
venv/
|
||
|
|
||
|
# Ignore the build directory
|
||
|
build/
|
||
|
|
||
|
# Ignore the dist directory
|
||
|
dist/
|
||
|
|
||
|
# Ignore the .env file for environment variables
|
||
|
.env
|
||
|
|
||
|
# Ignore any .DS_Store files created by macOS
|
||
|
.DS_Store
|