.gitignore 910 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # React compiled files
  7. NFTmarket/static/index-bundle.js
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. env/
  13. build/
  14. develop-eggs/
  15. dist/
  16. downloads/
  17. eggs/
  18. .eggs/
  19. lib/
  20. lib64/
  21. parts/
  22. sdist/
  23. var/
  24. *.egg-info/
  25. .installed.cfg
  26. *.egg
  27. node_modules/
  28. # Virtual environment folders, created using command
  29. # python -m venv virtenv
  30. virtenv/
  31. virtualenv/
  32. # PyInstaller
  33. # Usually these files are written by a python script from a template
  34. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  35. *.manifest
  36. *.spec
  37. # Installer logs
  38. pip-log.txt
  39. pip-delete-this-directory.txt
  40. # Unit test / coverage reports
  41. htmlcov/
  42. .tox/
  43. .coverage
  44. .coverage.*
  45. .cache
  46. nosetests.xml
  47. coverage.xml
  48. *,cover
  49. # Translations
  50. *.mo
  51. *.pot
  52. # Django stuff:
  53. *.log
  54. *.sqlite3
  55. # Sphinx documentation
  56. docs/_build/
  57. # PyBuilder
  58. target/