aletrn commited on
Commit
cbeec42
·
1 Parent(s): 00b4479

[docs] add .idea configs

Browse files
.gitignore CHANGED
@@ -1,10 +1,273 @@
1
- venv/
2
- *.pyc
3
- __cache__
4
- .idea
5
- tmp/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  .env*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  *.onnx
8
- .DS_Store
9
- .pytest_cache
10
- .coverage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Created by https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
3
+
4
+ ### Linux ###
5
+ *~
6
+
7
+ # temporary files which can be created if a process still has a handle open of a deleted file
8
+ .fuse_hidden*
9
+
10
+ # KDE directory preferences
11
+ .directory
12
+
13
+ # Linux trash folder which might appear on any partition or disk
14
+ .Trash-*
15
+
16
+ # .nfs files are created when an open file is removed but is still being accessed
17
+ .nfs*
18
+
19
+ ### OSX ###
20
+ *.DS_Store
21
+ .AppleDouble
22
+ .LSOverride
23
+
24
+ # Icon must end with two \r
25
+ Icon
26
+
27
+ # Thumbnails
28
+ ._*
29
+
30
+ # Files that might appear in the root of a volume
31
+ .DocumentRevisions-V100
32
+ .fseventsd
33
+ .Spotlight-V100
34
+ .TemporaryItems
35
+ .Trashes
36
+ .VolumeIcon.icns
37
+ .com.apple.timemachine.donotpresent
38
+
39
+ # Directories potentially created on remote AFP share
40
+ .AppleDB
41
+ .AppleDesktop
42
+ Network Trash Folder
43
+ Temporary Items
44
+ .apdisk
45
+
46
+ # CMake
47
+ cmake-build-debug/
48
+
49
+ # Ruby plugin and RubyMine
50
+ /.rakeTasks
51
+
52
+ # Crashlytics plugin (for Android Studio and IntelliJ)
53
+ com_crashlytics_export_strings.xml
54
+ crashlytics.properties
55
+ crashlytics-build.properties
56
+ fabric.properties
57
+
58
+ ### Python ###
59
+ # Byte-compiled / optimized / DLL files
60
+ __pycache__/
61
+ *.py[cod]
62
+ *$py.class
63
+
64
+ # C extensions
65
+ *.so
66
+
67
+ # Distribution / packaging
68
+ .Python
69
+ build/
70
+ develop-eggs/
71
+ dist/
72
+ downloads/
73
+ eggs/
74
+ .eggs/
75
+ lib/
76
+ lib64/
77
+ parts/
78
+ sdist/
79
+ var/
80
+ wheels/
81
+ *.egg-info/
82
+ .installed.cfg
83
+ *.egg
84
+
85
+ # PyInstaller
86
+ # Usually these files are written by a python script from a template
87
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
88
+ *.manifest
89
+ *.spec
90
+
91
+ # Installer logs
92
+ pip-log.txt
93
+ pip-delete-this-directory.txt
94
+
95
+ # Unit test / coverage reports
96
+ htmlcov/
97
+ .tox/
98
+ .coverage
99
+ .coverage.*
100
+ .cache
101
+ .pytest_cache/
102
+ nosetests.xml
103
+ coverage.xml
104
+ *.cover
105
+ .hypothesis/
106
+
107
+ # Translations
108
+ *.mo
109
+ *.pot
110
+
111
+ # Flask stuff:
112
+ instance/
113
+ .webassets-cache
114
+
115
+ # Scrapy stuff:
116
+ .scrapy
117
+
118
+ # Sphinx documentation
119
+ docs/_build/
120
+
121
+ # PyBuilder
122
+ target/
123
+
124
+ # Jupyter Notebook
125
+ .ipynb_checkpoints
126
+
127
+ # pyenv
128
+ .python-version
129
+
130
+ # celery beat schedule file
131
+ celerybeat-schedule.*
132
+
133
+ # SageMath parsed files
134
+ *.sage.py
135
+
136
+ # Environments
137
+ .env
138
  .env*
139
+ .venv
140
+ env/
141
+ venv/
142
+ ENV/
143
+ env.bak/
144
+ venv.bak/
145
+
146
+ # Spyder project settings
147
+ .spyderproject
148
+ .spyproject
149
+
150
+ # Rope project settings
151
+ .ropeproject
152
+
153
+ # mkdocs documentation
154
+ /site
155
+
156
+ # mypy
157
+ .mypy_cache/
158
+
159
+ ### VisualStudioCode ###
160
+ .vscode/*
161
+ !.vscode/settings.json
162
+ !.vscode/tasks.json
163
+ !.vscode/launch.json
164
+ !.vscode/extensions.json
165
+ .history
166
+
167
+ ### Windows ###
168
+ # Windows thumbnail cache files
169
+ Thumbs.db
170
+ ehthumbs.db
171
+ ehthumbs_vista.db
172
+
173
+ # Folder config file
174
+ Desktop.ini
175
+
176
+ # Recycle Bin used on file shares
177
+ $RECYCLE.BIN/
178
+
179
+ # Windows Installer files
180
+ *.cab
181
+ *.msi
182
+ *.msm
183
+ *.msp
184
+
185
+ # Windows shortcuts
186
+ *.lnk
187
+
188
+ # Build folder
189
+
190
+ */build/*
191
+
192
+ # custom
193
+ *.ori
194
+ tmp
195
+ nohup.out
196
+ /tests/events.tar
197
+ function_dump_*.json
198
+
199
+ # onnx models
200
  *.onnx
201
+
202
+ # End of https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
203
+
204
+ ## .idea files
205
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
206
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
207
+
208
+ # User-specific stuff
209
+ .idea/**/workspace.xml
210
+ .idea/**/tasks.xml
211
+ .idea/**/usage.statistics.xml
212
+ .idea/**/dictionaries
213
+ .idea/**/shelf
214
+
215
+ # Generated files
216
+ .idea/**/contentModel.xml
217
+
218
+ # Sensitive or high-churn files
219
+ .idea/**/dataSources/
220
+ .idea/**/dataSources.ids
221
+ .idea/**/dataSources.local.xml
222
+ .idea/**/sqlDataSources.xml
223
+ .idea/**/dynamic.xml
224
+ .idea/**/uiDesigner.xml
225
+ .idea/**/dbnavigator.xml
226
+
227
+ # Gradle
228
+ .idea/**/gradle.xml
229
+ .idea/**/libraries
230
+
231
+ # Gradle and Maven with auto-import
232
+ # When using Gradle or Maven with auto-import, you should exclude module files,
233
+ # since they will be recreated, and may cause churn. Uncomment if using
234
+ # auto-import.
235
+ # .idea/modules.xml
236
+ # .idea/*.iml
237
+ # .idea/modules
238
+
239
+ # CMake
240
+ cmake-build-*/
241
+
242
+ # Mongo Explorer plugin
243
+ .idea/**/mongoSettings.xml
244
+
245
+ # File-based project format
246
+ *.iws
247
+
248
+ # IntelliJ
249
+ out/
250
+
251
+ # mpeltonen/sbt-idea plugin
252
+ .idea_modules/
253
+
254
+ # JIRA plugin
255
+ atlassian-ide-plugin.xml
256
+
257
+ # Cursive Clojure plugin
258
+ .idea/replstate.xml
259
+
260
+ # Crashlytics plugin (for Android Studio and IntelliJ)
261
+ com_crashlytics_export_strings.xml
262
+ crashlytics.properties
263
+ crashlytics-build.properties
264
+ fabric.properties
265
+
266
+ # Editor-based Rest Client
267
+ .idea/httpRequests
268
+
269
+ # Android studio 3.1+ serialized cache file
270
+ .idea/caches/build_file_checksums.ser
271
+
272
+ # Sonarlint plugin
273
+ .idea/sonarlint
.idea/.gitignore ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
.idea/inspectionProfiles/profiles_settings.xml ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ <component name="InspectionProjectProfileManager">
2
+ <settings>
3
+ <option name="USE_PROJECT_PROFILE" value="false" />
4
+ <version value="1.0" />
5
+ </settings>
6
+ </component>
.idea/misc.xml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="Black">
4
+ <option name="sdkName" value="Python 3.11 (samgis)" />
5
+ </component>
6
+ <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11 (samgis)" project-jdk-type="Python SDK" />
7
+ </project>
.idea/modules.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/samgis.iml" filepath="$PROJECT_DIR$/.idea/samgis.iml" />
6
+ <module fileurl="file://$PROJECT_DIR$/../surferdtm-api/.idea/surferdtm-api.iml" filepath="$PROJECT_DIR$/../surferdtm-api/.idea/surferdtm-api.iml" />
7
+ </modules>
8
+ </component>
9
+ </project>
.idea/samgis.iml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="PYTHON_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$" />
5
+ <orderEntry type="jdk" jdkName="Python 3.11 (samgis)" jdkType="Python SDK" />
6
+ <orderEntry type="sourceFolder" forTests="false" />
7
+ <orderEntry type="module" module-name="surferdtm-api" />
8
+ </component>
9
+ </module>
.idea/vcs.xml ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ <mapping directory="$PROJECT_DIR$/../surferdtm-api" vcs="Git" />
6
+ </component>
7
+ </project>