.gitignore 294 B

12345678910111213141516171819202122232425262728
  1. # Virtualenv
  2. env/
  3. venv/
  4. ./
  5. #module
  6. webservice_running/
  7. design_template/
  8. tickets/
  9. metaservicesynced/
  10. openlocal/
  11. staticfiles/
  12. core/config.py
  13. SharixAdmin/migrations/
  14. !SharixAdmin/migrations/__init__.py
  15. # VSCode
  16. .vscode
  17. # Python
  18. __pycache__/
  19. *.py[cod]
  20. *$py.class
  21. # Other
  22. *.sqlite3
  23. .env
  24. # Vim
  25. *~