.gitignore 191 B

1234567891011121314151617181920
  1. # Virtualenv
  2. env/
  3. venv/
  4. #module
  5. tickets/
  6. metaservicesynced/
  7. staticfiles/
  8. core/config.py
  9. migrations/000*.py
  10. # VSCode
  11. .vscode
  12. # Python
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. # Other
  17. *.sqlite3
  18. .env