.gitignore 371 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Virtualenv
  2. env/
  3. venv/
  4. .venv/
  5. #config for concrete service
  6. bin/install.cfg
  7. # Editors
  8. .vscode
  9. .idea
  10. # Python
  11. __pycache__/
  12. *.py[cod]
  13. *$py.class
  14. # Apps
  15. tickets/
  16. dbsynce/
  17. conf/
  18. design_template/
  19. webservice_running/
  20. landing/
  21. user/
  22. # Django
  23. migrations/
  24. staticfiles/
  25. media/
  26. # Other
  27. *.sqlite3
  28. *.*~
  29. *.*.swp
  30. .DS_Store
  31. # Project configuration variables
  32. core/settings_vars.py