.gitignore 311 B

12345678910111213141516171819202122232425262728
  1. # Virtualenv
  2. env/
  3. venv/
  4. #module
  5. webservice_running/
  6. design_template/
  7. tickets/
  8. metaservicesynced/
  9. sharix-open-config/
  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. *~