.gitignore 318 B

1234567891011121314151617181920212223242526272829
  1. # git ignore for djangol project
  2. # Ignore the virtual environment
  3. venv/
  4. # Ignore the static files
  5. static/
  6. # Ignore the media files
  7. media/
  8. # Ignore the secret key
  9. secret_key.txt
  10. # Ignore the local settings
  11. local_settings.py
  12. # Ignore the logs
  13. logs/
  14. # ignore python related files
  15. *.pyc
  16. *.pyo
  17. *.pyd
  18. __pycache__/