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.6 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
  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. # ---> R
  52. # History files
  53. .Rhistory
  54. .Rapp.history
  55. # Example code in package build process
  56. *-Ex.R
  57. # RStudio files
  58. .Rproj.user/
  59. # produced vignettes
  60. vignettes/*.html
  61. vignettes/*.pdf
  62. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  63. .httr-oauth
  64. # ---> Qt
  65. # C++ objects and libs
  66. *.slo
  67. *.lo
  68. *.o
  69. *.a
  70. *.la
  71. *.lai
  72. *.so
  73. *.dll
  74. *.dylib
  75. # Qt-es
  76. /.qmake.cache
  77. /.qmake.stash
  78. *.pro.user
  79. *.pro.user.*
  80. *.qbs.user
  81. *.qbs.user.*
  82. *.moc
  83. moc_*.cpp
  84. qrc_*.cpp
  85. ui_*.h
  86. Makefile*
  87. *-build-*
  88. # QtCreator
  89. *.autosave
  90. #QtCtreator Qml
  91. *.qmlproject.user
  92. *.qmlproject.user.*
  93. # ---> Processing
  94. .DS_Store
  95. applet
  96. application.linux32
  97. application.linux64
  98. application.windows32
  99. application.windows64
  100. application.macosx
  101. # ---> PlayFramework
  102. # Ignore Play! working directory #
  103. bin/
  104. /db
  105. .eclipse
  106. /lib/
  107. /logs/
  108. /modules
  109. /project/project
  110. /project/target
  111. /target
  112. tmp/
  113. test-result
  114. server.pid
  115. *.iml
  116. *.eml
  117. /dist/
  118. .cache
Tip!

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

Comments

Loading...