41 lines
595 B
Plaintext
41 lines
595 B
Plaintext
|
# Ignore files generated by text editors
|
||
|
*~
|
||
|
*.swp
|
||
|
|
||
|
# Ignore version control files and directories
|
||
|
.git
|
||
|
.gitignore
|
||
|
svn
|
||
|
CVS
|
||
|
|
||
|
# Ignore Python bytecode files and cache directories
|
||
|
*.pyc
|
||
|
__pycache__
|
||
|
|
||
|
# Ignore local development settings files
|
||
|
.env
|
||
|
.local
|
||
|
.venv
|
||
|
|
||
|
# Ignore Docker build context directories
|
||
|
.dockerignore
|
||
|
.docker
|
||
|
|
||
|
# Ignore node_modules directory
|
||
|
node_modules
|
||
|
|
||
|
# Ignore Celery beat schedule file
|
||
|
celerybeat-schedule
|
||
|
|
||
|
# Ignore Celery worker pid file
|
||
|
celeryd.pid
|
||
|
|
||
|
# Ignore Celery task result files
|
||
|
celery-task-meta-*
|
||
|
|
||
|
# Ignore Django static files
|
||
|
/static
|
||
|
|
||
|
# Ignore Django media files
|
||
|
/media
|