1234567891011121314151617181920212223242526272829 |
- # git ignore for djangol project
- # Ignore the virtual environment
- venv/
- # Ignore the static files
- static/
- # Ignore the media files
- media/
- # Ignore the secret key
- secret_key.txt
- # Ignore the local settings
- local_settings.py
- # Ignore the logs
- logs/
- # ignore python related files
- *.pyc
- *.pyo
- *.pyd
- __pycache__/
|