Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 1.1 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. env/
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .coverage
  37. .coverage.*
  38. .cache
  39. nosetests.xml
  40. coverage.xml
  41. *,cover
  42. # Translations
  43. *.mo
  44. *.pot
  45. # Django stuff:
  46. *.log
  47. # Sphinx documentation
  48. docs/_build/
  49. # PyBuilder
  50. target/
  51. # ---> Processing
  52. .DS_Store
  53. applet
  54. application.linux32
  55. application.linux64
  56. application.windows32
  57. application.windows64
  58. application.macosx
  59. # ---> Qt
  60. # C++ objects and libs
  61. *.slo
  62. *.lo
  63. *.o
  64. *.a
  65. *.la
  66. *.lai
  67. *.so
  68. *.dll
  69. *.dylib
  70. # Qt-es
  71. /.qmake.cache
  72. /.qmake.stash
  73. *.pro.user
  74. *.pro.user.*
  75. *.qbs.user
  76. *.qbs.user.*
  77. *.moc
  78. moc_*.cpp
  79. qrc_*.cpp
  80. ui_*.h
  81. Makefile*
  82. *-build-*
  83. # QtCreator
  84. *.autosave
  85. #QtCtreator Qml
  86. *.qmlproject.user
  87. *.qmlproject.user.*
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...