vyral 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (102) hide show
  1. vyral-0.1.1/.gitignore +562 -0
  2. vyral-0.1.1/LICENSE +173 -0
  3. vyral-0.1.1/PKG-INFO +605 -0
  4. vyral-0.1.1/README.md +397 -0
  5. vyral-0.1.1/pyproject.toml +82 -0
  6. vyral-0.1.1/src/vyral_runtime/__init__.py +626 -0
  7. vyral-0.1.1/src/vyral_runtime/__main__.py +4 -0
  8. vyral-0.1.1/src/vyral_runtime/_conformance/__init__.py +1 -0
  9. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/manifest.json +100 -0
  10. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/manifest.schema.json +107 -0
  11. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenario.schema.json +114 -0
  12. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/canonical/strong-profile.json +467 -0
  13. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/execution/native-lifecycle.json +224 -0
  14. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/external-workers/handler-lifecycle.json +86 -0
  15. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/goldens/admission-receipts.json +105 -0
  16. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/goldens/collection-snapshot-hash.json +78 -0
  17. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/goldens/embedding-vectors.json +44 -0
  18. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/goldens/graph-record-mapping.json +308 -0
  19. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/goldens/primitives-hashing.json +51 -0
  20. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/goldens/rag-ingestion-plan.json +94 -0
  21. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/records/core-crud.json +462 -0
  22. vyral-0.1.1/src/vyral_runtime/_conformance/runtime/v1/scenarios/records/query-semantics.json +200 -0
  23. vyral-0.1.1/src/vyral_runtime/_contracts/__init__.py +1 -0
  24. vyral-0.1.1/src/vyral_runtime/_contracts/public-sdk-surface.json +3966 -0
  25. vyral-0.1.1/src/vyral_runtime/_contracts/vyral-public.schema.json +13307 -0
  26. vyral-0.1.1/src/vyral_runtime/_contracts/vyral.openapi.json +18456 -0
  27. vyral-0.1.1/src/vyral_runtime/_datetime.py +34 -0
  28. vyral-0.1.1/src/vyral_runtime/_local_experience.py +552 -0
  29. vyral-0.1.1/src/vyral_runtime/_starter.py +187 -0
  30. vyral-0.1.1/src/vyral_runtime/_version.py +5 -0
  31. vyral-0.1.1/src/vyral_runtime/admission.py +137 -0
  32. vyral-0.1.1/src/vyral_runtime/async_runtime.py +86 -0
  33. vyral-0.1.1/src/vyral_runtime/canonical/__init__.py +129 -0
  34. vyral-0.1.1/src/vyral_runtime/canonical/codec.py +1096 -0
  35. vyral-0.1.1/src/vyral_runtime/canonical/conformance.py +643 -0
  36. vyral-0.1.1/src/vyral_runtime/canonical/models.py +1511 -0
  37. vyral-0.1.1/src/vyral_runtime/canonical/store.py +2172 -0
  38. vyral-0.1.1/src/vyral_runtime/conformance.py +576 -0
  39. vyral-0.1.1/src/vyral_runtime/contracts.py +221 -0
  40. vyral-0.1.1/src/vyral_runtime/embeddings/__init__.py +45 -0
  41. vyral-0.1.1/src/vyral_runtime/embeddings/models.py +212 -0
  42. vyral-0.1.1/src/vyral_runtime/embeddings/providers.py +284 -0
  43. vyral-0.1.1/src/vyral_runtime/embeddings/service.py +174 -0
  44. vyral-0.1.1/src/vyral_runtime/execution/__init__.py +173 -0
  45. vyral-0.1.1/src/vyral_runtime/execution/authoring.py +113 -0
  46. vyral-0.1.1/src/vyral_runtime/execution/conformance.py +342 -0
  47. vyral-0.1.1/src/vyral_runtime/execution/harness.py +601 -0
  48. vyral-0.1.1/src/vyral_runtime/execution/http.py +541 -0
  49. vyral-0.1.1/src/vyral_runtime/execution/jobs.py +552 -0
  50. vyral-0.1.1/src/vyral_runtime/execution/local_runtime.py +3011 -0
  51. vyral-0.1.1/src/vyral_runtime/execution/models.py +1037 -0
  52. vyral-0.1.1/src/vyral_runtime/execution/native_conformance.py +586 -0
  53. vyral-0.1.1/src/vyral_runtime/execution/native_models.py +652 -0
  54. vyral-0.1.1/src/vyral_runtime/execution/worker.py +609 -0
  55. vyral-0.1.1/src/vyral_runtime/graph/__init__.py +93 -0
  56. vyral-0.1.1/src/vyral_runtime/graph/mapper.py +290 -0
  57. vyral-0.1.1/src/vyral_runtime/graph/models.py +435 -0
  58. vyral-0.1.1/src/vyral_runtime/graph/operations.py +456 -0
  59. vyral-0.1.1/src/vyral_runtime/graph/providers.py +82 -0
  60. vyral-0.1.1/src/vyral_runtime/graph/service.py +1034 -0
  61. vyral-0.1.1/src/vyral_runtime/host/__init__.py +39 -0
  62. vyral-0.1.1/src/vyral_runtime/host/__main__.py +4 -0
  63. vyral-0.1.1/src/vyral_runtime/host/application.py +219 -0
  64. vyral-0.1.1/src/vyral_runtime/host/auth.py +120 -0
  65. vyral-0.1.1/src/vyral_runtime/host/cli.py +468 -0
  66. vyral-0.1.1/src/vyral_runtime/host/diagnostics.py +73 -0
  67. vyral-0.1.1/src/vyral_runtime/host/mcp.py +3247 -0
  68. vyral-0.1.1/src/vyral_runtime/host/rest.py +706 -0
  69. vyral-0.1.1/src/vyral_runtime/host/rest_operations.py +2218 -0
  70. vyral-0.1.1/src/vyral_runtime/host/rest_registry.py +234 -0
  71. vyral-0.1.1/src/vyral_runtime/integrations/__init__.py +57 -0
  72. vyral-0.1.1/src/vyral_runtime/integrations/extropic.py +1201 -0
  73. vyral-0.1.1/src/vyral_runtime/integrations/ripgrep.py +562 -0
  74. vyral-0.1.1/src/vyral_runtime/local/__init__.py +141 -0
  75. vyral-0.1.1/src/vyral_runtime/local/async_store.py +180 -0
  76. vyral-0.1.1/src/vyral_runtime/local/conformance.py +335 -0
  77. vyral-0.1.1/src/vyral_runtime/local/lexical.py +755 -0
  78. vyral-0.1.1/src/vyral_runtime/local/models.py +421 -0
  79. vyral-0.1.1/src/vyral_runtime/local/object_store.py +793 -0
  80. vyral-0.1.1/src/vyral_runtime/local/query_engine.py +427 -0
  81. vyral-0.1.1/src/vyral_runtime/local/query_models.py +394 -0
  82. vyral-0.1.1/src/vyral_runtime/local/record_store.py +1575 -0
  83. vyral-0.1.1/src/vyral_runtime/local/snapshots.py +416 -0
  84. vyral-0.1.1/src/vyral_runtime/local/trace_store.py +721 -0
  85. vyral-0.1.1/src/vyral_runtime/primitives.py +31 -0
  86. vyral-0.1.1/src/vyral_runtime/profiles.py +143 -0
  87. vyral-0.1.1/src/vyral_runtime/py.typed +1 -0
  88. vyral-0.1.1/src/vyral_runtime/rag/__init__.py +91 -0
  89. vyral-0.1.1/src/vyral_runtime/rag/context.py +1849 -0
  90. vyral-0.1.1/src/vyral_runtime/rag/context_models.py +629 -0
  91. vyral-0.1.1/src/vyral_runtime/rag/evaluation_models.py +249 -0
  92. vyral-0.1.1/src/vyral_runtime/rag/ingestion.py +1817 -0
  93. vyral-0.1.1/src/vyral_runtime/rag/models.py +485 -0
  94. vyral-0.1.1/src/vyral_runtime/readiness.py +187 -0
  95. vyral-0.1.1/src/vyral_runtime/retrieval/__init__.py +84 -0
  96. vyral-0.1.1/src/vyral_runtime/retrieval/evaluation.py +826 -0
  97. vyral-0.1.1/src/vyral_runtime/retrieval/evaluation_models.py +502 -0
  98. vyral-0.1.1/src/vyral_runtime/retrieval/models.py +435 -0
  99. vyral-0.1.1/src/vyral_runtime/retrieval/profiles.py +288 -0
  100. vyral-0.1.1/src/vyral_runtime/retrieval/service.py +990 -0
  101. vyral-0.1.1/src/vyral_runtime/runtime.py +611 -0
  102. vyral-0.1.1/src/vyral_runtime/storage.py +212 -0
vyral-0.1.1/.gitignore ADDED
@@ -0,0 +1,562 @@
1
+ ## Ignore Visual Studio temporary files, build results, and
2
+ ## files generated by popular Visual Studio add-ons.
3
+ ##
4
+ ## Get latest from `dotnet new gitignore`
5
+
6
+ # dotenv files and credential-bearing environment variants
7
+ .env
8
+ .env.*
9
+ *.env
10
+ *.env.*
11
+ !*.env.example
12
+ !*.env.sample
13
+
14
+ # Private local planning, review, and tool state. Keep these artifacts on the
15
+ # workstation; they are not part of the distributable source tree.
16
+ Inbox/
17
+ .claude/
18
+ *.pem
19
+ *.key
20
+ *.p12
21
+ *.pfx
22
+ # Ephemeral external-account file created by google-github-actions/auth.
23
+ gha-creds-*.json
24
+ # Deployment-specific integration notes remain local rather than becoming public product history.
25
+ design/*-integration.md
26
+
27
+ # Local project docs and generated development state. Explicit public explainers
28
+ # and operating contracts are allowlisted; other workstation-local docs remain ignored.
29
+ docs/*
30
+ !docs/README.md
31
+ !docs/roman.md
32
+ !docs/temporal-operator-guide.md
33
+ !docs/assets/
34
+ docs/assets/*
35
+ !docs/assets/vyral-logo-50.png
36
+ !docs/assets/vyral-logo.png
37
+ !docs/concepts/
38
+ docs/concepts/*
39
+ !docs/concepts/canonical-store.md
40
+ !docs/contributing/
41
+ docs/contributing/*
42
+ !docs/contributing/adapter-contributor.md
43
+ !docs/guides/
44
+ docs/guides/*
45
+ !docs/guides/consumer-handoff.md
46
+ !docs/guides/extropic-execution.md
47
+ !docs/guides/portable-cutovers.md
48
+ !docs/guides/source-native-retrieval.md
49
+ !docs/guides/stateless-mcp.md
50
+ !docs/guides/python-host-security.md
51
+ !docs/maintainers/
52
+ docs/maintainers/*
53
+ !docs/maintainers/releasing.md
54
+ !docs/reference/
55
+ docs/reference/*
56
+ !docs/reference/execution-runtime-limitations.md
57
+ !docs/reference/stability.md
58
+ .agent-state/
59
+ .agent-artifacts/
60
+ .vyral/
61
+ .vyral-*/
62
+ .antigravitycli/
63
+ # Operator-owned patterns used to prove that reachable Git history contains no
64
+ # private vocabulary before a visibility change. This policy is intentionally
65
+ # local: publishing the patterns would disclose the very identifiers it guards.
66
+ .release-history-denylist
67
+ .release-ownership-denylist
68
+ *.sqlite
69
+ *.sqlite-*
70
+ export.json
71
+
72
+ # Python
73
+ __pycache__/
74
+ *.py[cod]
75
+ .pytest_cache/
76
+ .venv/
77
+ dist/
78
+ build/
79
+ *.egg-info/
80
+
81
+ # JavaScript
82
+ node_modules/
83
+ npm-debug.log*
84
+ yarn-debug.log*
85
+ yarn-error.log*
86
+
87
+ # User-specific files
88
+ *.rsuser
89
+ *.suo
90
+ *.user
91
+ *.userosscache
92
+ *.sln.docstates
93
+
94
+ # User-specific files (MonoDevelop/Xamarin Studio)
95
+ *.userprefs
96
+
97
+ # Mono auto generated files
98
+ mono_crash.*
99
+
100
+ # Build results
101
+ [Dd]ebug/
102
+ [Dd]ebugPublic/
103
+ [Rr]elease/
104
+ [Rr]eleases/
105
+ x64/
106
+ x86/
107
+ [Ww][Ii][Nn]32/
108
+ [Aa][Rr][Mm]/
109
+ [Aa][Rr][Mm]64/
110
+ bld/
111
+ [Bb]in/
112
+ [Oo]bj/
113
+ [Ll]og/
114
+ [Ll]ogs/
115
+
116
+ # Visual Studio 2015/2017 cache/options directory
117
+ .vs/
118
+ # Uncomment if you have tasks that create the project's static files in wwwroot
119
+ #wwwroot/
120
+
121
+ # Visual Studio 2017 auto generated files
122
+ Generated\ Files/
123
+
124
+ # MSTest test Results
125
+ [Tt]est[Rr]esult*/
126
+ [Bb]uild[Ll]og.*
127
+
128
+ # NUnit
129
+ *.VisualState.xml
130
+ TestResult.xml
131
+ nunit-*.xml
132
+
133
+ # Build Results of an ATL Project
134
+ [Dd]ebugPS/
135
+ [Rr]eleasePS/
136
+ dlldata.c
137
+
138
+ # Benchmark Results
139
+ BenchmarkDotNet.Artifacts/
140
+
141
+ # .NET
142
+ project.lock.json
143
+ project.fragment.lock.json
144
+ artifacts/
145
+
146
+ # Tye
147
+ .tye/
148
+
149
+ # ASP.NET Scaffolding
150
+ ScaffoldingReadMe.txt
151
+
152
+ # StyleCop
153
+ StyleCopReport.xml
154
+
155
+ # Files built by Visual Studio
156
+ *_i.c
157
+ *_p.c
158
+ *_h.h
159
+ *.ilk
160
+ *.meta
161
+ *.obj
162
+ *.iobj
163
+ *.pch
164
+ *.pdb
165
+ *.ipdb
166
+ *.pgc
167
+ *.pgd
168
+ *.rsp
169
+ *.sbr
170
+ *.tlb
171
+ *.tli
172
+ *.tlh
173
+ *.tmp
174
+ *.tmp_proj
175
+ *_wpftmp.csproj
176
+ *.log
177
+ *.tlog
178
+ *.vspscc
179
+ *.vssscc
180
+ .builds
181
+ *.pidb
182
+ *.svclog
183
+ *.scc
184
+
185
+ # Chutzpah Test files
186
+ _Chutzpah*
187
+
188
+ # Visual C++ cache files
189
+ ipch/
190
+ *.aps
191
+ *.ncb
192
+ *.opendb
193
+ *.opensdf
194
+ *.sdf
195
+ *.cachefile
196
+ *.VC.db
197
+ *.VC.VC.opendb
198
+
199
+ # Visual Studio profiler
200
+ *.psess
201
+ *.vsp
202
+ *.vspx
203
+ *.sap
204
+
205
+ # Visual Studio Trace Files
206
+ *.e2e
207
+
208
+ # TFS 2012 Local Workspace
209
+ $tf/
210
+
211
+ # Guidance Automation Toolkit
212
+ *.gpState
213
+
214
+ # ReSharper is a .NET coding add-in
215
+ _ReSharper*/
216
+ *.[Rr]e[Ss]harper
217
+ *.DotSettings.user
218
+
219
+ # TeamCity is a build add-in
220
+ _TeamCity*
221
+
222
+ # DotCover is a Code Coverage Tool
223
+ *.dotCover
224
+
225
+ # AxoCover is a Code Coverage Tool
226
+ .axoCover/*
227
+ !.axoCover/settings.json
228
+
229
+ # Coverlet is a free, cross platform Code Coverage Tool
230
+ coverage*.json
231
+ coverage*.xml
232
+ coverage*.info
233
+
234
+ # Visual Studio code coverage results
235
+ *.coverage
236
+ *.coveragexml
237
+
238
+ # NCrunch
239
+ _NCrunch_*
240
+ .*crunch*.local.xml
241
+ nCrunchTemp_*
242
+
243
+ # MightyMoose
244
+ *.mm.*
245
+ AutoTest.Net/
246
+
247
+ # Web workbench (sass)
248
+ .sass-cache/
249
+
250
+ # Installshield output folder
251
+ [Ee]xpress/
252
+
253
+ # DocProject is a documentation generator add-in
254
+ DocProject/buildhelp/
255
+ DocProject/Help/*.HxT
256
+ DocProject/Help/*.HxC
257
+ DocProject/Help/*.hhc
258
+ DocProject/Help/*.hhk
259
+ DocProject/Help/*.hhp
260
+ DocProject/Help/Html2
261
+ DocProject/Help/html
262
+
263
+ # Click-Once directory
264
+ publish/
265
+
266
+ # Publish Web Output
267
+ *.[Pp]ublish.xml
268
+ *.azurePubxml
269
+ # Note: Comment the next line if you want to checkin your web deploy settings,
270
+ # but database connection strings (with potential passwords) will be unencrypted
271
+ *.pubxml
272
+ *.publishproj
273
+
274
+ # Microsoft Azure Web App publish settings. Comment the next line if you want to
275
+ # checkin your Azure Web App publish settings, but sensitive information contained
276
+ # in these scripts will be unencrypted
277
+ PublishScripts/
278
+
279
+ # NuGet Packages
280
+ *.nupkg
281
+ # NuGet Symbol Packages
282
+ *.snupkg
283
+ # The packages folder can be ignored because of Package Restore
284
+ **/[Pp]ackages/*
285
+ # except build/, which is used as an MSBuild target.
286
+ !**/[Pp]ackages/build/
287
+ # Uncomment if necessary however generally it will be regenerated when needed
288
+ #!**/[Pp]ackages/repositories.config
289
+ # NuGet v3's project.json files produces more ignorable files
290
+ *.nuget.props
291
+ *.nuget.targets
292
+
293
+ # Microsoft Azure Build Output
294
+ csx/
295
+ *.build.csdef
296
+
297
+ # Microsoft Azure Emulator
298
+ ecf/
299
+ rcf/
300
+
301
+ # Windows Store app package directories and files
302
+ AppPackages/
303
+ BundleArtifacts/
304
+ Package.StoreAssociation.xml
305
+ _pkginfo.txt
306
+ *.appx
307
+ *.appxbundle
308
+ *.appxupload
309
+
310
+ # Visual Studio cache files
311
+ # files ending in .cache can be ignored
312
+ *.[Cc]ache
313
+ # but keep track of directories ending in .cache
314
+ !?*.[Cc]ache/
315
+
316
+ # Others
317
+ ClientBin/
318
+ ~$*
319
+ *~
320
+ *.dbmdl
321
+ *.dbproj.schemaview
322
+ *.jfm
323
+ *.pfx
324
+ *.publishsettings
325
+ orleans.codegen.cs
326
+
327
+ # Including strong name files can present a security risk
328
+ # (https://github.com/github/gitignore/pull/2483#issue-259490424)
329
+ #*.snk
330
+
331
+ # Since there are multiple workflows, uncomment next line to ignore bower_components
332
+ # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
333
+ #bower_components/
334
+
335
+ # RIA/Silverlight projects
336
+ Generated_Code/
337
+
338
+ # Backup & report files from converting an old project file
339
+ # to a newer Visual Studio version. Backup files are not needed,
340
+ # because we have git ;-)
341
+ _UpgradeReport_Files/
342
+ Backup*/
343
+ UpgradeLog*.XML
344
+ UpgradeLog*.htm
345
+ ServiceFabricBackup/
346
+ *.rptproj.bak
347
+
348
+ # SQL Server files
349
+ *.mdf
350
+ *.ldf
351
+ *.ndf
352
+
353
+ # Business Intelligence projects
354
+ *.rdl.data
355
+ *.bim.layout
356
+ *.bim_*.settings
357
+ *.rptproj.rsuser
358
+ *- [Bb]ackup.rdl
359
+ *- [Bb]ackup ([0-9]).rdl
360
+ *- [Bb]ackup ([0-9][0-9]).rdl
361
+
362
+ # Microsoft Fakes
363
+ FakesAssemblies/
364
+
365
+ # GhostDoc plugin setting file
366
+ *.GhostDoc.xml
367
+
368
+ # Node.js Tools for Visual Studio
369
+ .ntvs_analysis.dat
370
+ node_modules/
371
+
372
+ # Visual Studio 6 build log
373
+ *.plg
374
+
375
+ # Visual Studio 6 workspace options file
376
+ *.opt
377
+
378
+ # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
379
+ *.vbw
380
+
381
+ # Visual Studio 6 auto-generated project file (contains which files were open etc.)
382
+ *.vbp
383
+
384
+ # Visual Studio 6 workspace and project file (working project files containing files to include in project)
385
+ *.dsw
386
+ *.dsp
387
+
388
+ # Visual Studio 6 technical files
389
+ *.ncb
390
+ *.aps
391
+
392
+ # Visual Studio LightSwitch build output
393
+ **/*.HTMLClient/GeneratedArtifacts
394
+ **/*.DesktopClient/GeneratedArtifacts
395
+ **/*.DesktopClient/ModelManifest.xml
396
+ **/*.Server/GeneratedArtifacts
397
+ **/*.Server/ModelManifest.xml
398
+ _Pvt_Extensions
399
+
400
+ # Paket dependency manager
401
+ .paket/paket.exe
402
+ paket-files/
403
+
404
+ # FAKE - F# Make
405
+ .fake/
406
+
407
+ # CodeRush personal settings
408
+ .cr/personal
409
+
410
+ # Python Tools for Visual Studio (PTVS)
411
+ __pycache__/
412
+ *.pyc
413
+
414
+ # Cake - Uncomment if you are using it
415
+ # tools/**
416
+ # !tools/packages.config
417
+
418
+ # Tabs Studio
419
+ *.tss
420
+
421
+ # Telerik's JustMock configuration file
422
+ *.jmconfig
423
+
424
+ # BizTalk build output
425
+ *.btp.cs
426
+ *.btm.cs
427
+ *.odx.cs
428
+ *.xsd.cs
429
+
430
+ # OpenCover UI analysis results
431
+ OpenCover/
432
+
433
+ # Azure Stream Analytics local run output
434
+ ASALocalRun/
435
+
436
+ # MSBuild Binary and Structured Log
437
+ *.binlog
438
+
439
+ # NVidia Nsight GPU debugger configuration file
440
+ *.nvuser
441
+
442
+ # MFractors (Xamarin productivity tool) working folder
443
+ .mfractor/
444
+
445
+ # Local History for Visual Studio
446
+ .localhistory/
447
+
448
+ # Visual Studio History (VSHistory) files
449
+ .vshistory/
450
+
451
+ # BeatPulse healthcheck temp database
452
+ healthchecksdb
453
+
454
+ # Backup folder for Package Reference Convert tool in Visual Studio 2017
455
+ MigrationBackup/
456
+
457
+ # Ionide (cross platform F# VS Code tools) working folder
458
+ .ionide/
459
+
460
+ # Fody - auto-generated XML schema
461
+ FodyWeavers.xsd
462
+
463
+ # VS Code files for those working on multiple tools
464
+ .vscode/*
465
+ !.vscode/settings.json
466
+ !.vscode/tasks.json
467
+ !.vscode/launch.json
468
+ !.vscode/extensions.json
469
+ *.code-workspace
470
+
471
+ # Local History for Visual Studio Code
472
+ .history/
473
+
474
+ # Windows Installer files from build outputs
475
+ *.cab
476
+ *.msi
477
+ *.msix
478
+ *.msm
479
+ *.msp
480
+
481
+ # JetBrains Rider
482
+ *.sln.iml
483
+ .idea
484
+
485
+ ##
486
+ ## Visual studio for Mac
487
+ ##
488
+
489
+
490
+ # globs
491
+ Makefile.in
492
+ *.userprefs
493
+ *.usertasks
494
+ config.make
495
+ config.status
496
+ aclocal.m4
497
+ install-sh
498
+ autom4te.cache/
499
+ *.tar.gz
500
+ tarballs/
501
+ test-results/
502
+
503
+ # Mac bundle stuff
504
+ *.dmg
505
+ *.app
506
+
507
+ # content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
508
+ # General
509
+ .DS_Store
510
+ .AppleDouble
511
+ .LSOverride
512
+
513
+ # Icon must end with two \r
514
+ Icon
515
+
516
+
517
+ # Thumbnails
518
+ ._*
519
+
520
+ # Files that might appear in the root of a volume
521
+ .DocumentRevisions-V100
522
+ .fseventsd
523
+ .Spotlight-V100
524
+ .TemporaryItems
525
+ .Trashes
526
+ .VolumeIcon.icns
527
+ .com.apple.timemachine.donotpresent
528
+
529
+ # Directories potentially created on remote AFP share
530
+ .AppleDB
531
+ .AppleDesktop
532
+ Network Trash Folder
533
+ Temporary Items
534
+ .apdisk
535
+
536
+ # content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
537
+ # Windows thumbnail cache files
538
+ Thumbs.db
539
+ ehthumbs.db
540
+ ehthumbs_vista.db
541
+
542
+ # Dump file
543
+ *.stackdump
544
+
545
+ # Folder config file
546
+ [Dd]esktop.ini
547
+
548
+ # Recycle Bin used on file shares
549
+ $RECYCLE.BIN/
550
+
551
+ # Windows Installer files
552
+ *.cab
553
+ *.msi
554
+ *.msix
555
+ *.msm
556
+ *.msp
557
+
558
+ # Windows shortcuts
559
+ *.lnk
560
+
561
+ # Vim temporary swap files
562
+ *.swp