.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. # === START GENERAL IGNORES: ===
  2. mongo_data
  3. postgres_data
  4. *.env*
  5. # === END GENERAL IGNORES ===
  6. # === START BACKEND IGNORES: ===
  7. # ---> Python
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. *.py[cod]
  11. *$py.class
  12. # C extensions
  13. *.so
  14. # Distribution / packaging
  15. .Python
  16. env/
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. *.egg-info/
  29. .installed.cfg
  30. *.egg
  31. # PyInstaller
  32. # Usually these files are written by a python script from a template
  33. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  34. *.manifest
  35. *.spec
  36. # Installer logs
  37. pip-log.txt
  38. pip-delete-this-directory.txt
  39. # Unit test / coverage reports
  40. htmlcov/
  41. .tox/
  42. .coverage
  43. .coverage.*
  44. .cache
  45. nosetests.xml
  46. coverage.xml
  47. *,cover
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. # Sphinx documentation
  54. docs/_build/
  55. # PyBuilder
  56. target/
  57. # Sqlite Database
  58. app/database/sqlite.db
  59. # Data dumps
  60. app/dumps/
  61. # === END BACKEND IGNORES ===
  62. # === START FRONTEND IGNORES: ===
  63. # ---> Node and React
  64. # Logs
  65. logs
  66. *.log
  67. npm-debug.log*
  68. # Runtime data
  69. pids
  70. *.pid
  71. *.seed
  72. # Directory for instrumented libs generated by jscoverage/JSCover
  73. lib-cov
  74. # Coverage directory used by tools like istanbul
  75. coverage
  76. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  77. .grunt
  78. # node-waf configuration
  79. .lock-wscript
  80. # Compiled binary addons (http://nodejs.org/api/addons.html)
  81. build/Release
  82. # dependencies
  83. **/node_modules
  84. /.pnp
  85. .pnp.js
  86. # testing
  87. /coverage
  88. # production
  89. /build
  90. # misc
  91. .DS_Store
  92. .env.local
  93. .env.development.local
  94. .env.test.local
  95. .env.production.local
  96. npm-debug.log*
  97. yarn-debug.log*
  98. yarn-error.log*
  99. # === END FRONTEND IGNORES ===