.gitignore 364 B

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