.gitignore 291 B

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