runbios-sdk 0.2.2__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.
@@ -0,0 +1,100 @@
1
+ # Environment
2
+ .env
3
+ .env.local
4
+ .env.*.local
5
+ !.env.example
6
+
7
+ # Per-service env files (contain secrets)
8
+ services/*/.env
9
+ services/*/.env.local
10
+ platform/*/.env
11
+ platform/*/.env.local
12
+
13
+ # Keep .env.example files tracked
14
+ !services/*/.env.example
15
+ !platform/*/.env.example
16
+
17
+ # Go
18
+ vendor/
19
+ main
20
+ *.exe
21
+ *.exe~
22
+ *.dll
23
+ *.so
24
+ *.dylib
25
+ *.test
26
+ *.out
27
+ go.work
28
+ go.work.sum
29
+
30
+ # Python
31
+ __pycache__/
32
+ *.py[cod]
33
+ *$py.class
34
+ *.so
35
+ .Python
36
+ env/
37
+ venv/
38
+ .venv/
39
+ *.egg-info/
40
+ dist/
41
+ build/
42
+
43
+ # Node
44
+ node_modules/
45
+ .next/
46
+ out/
47
+ .turbo/
48
+ # TypeScript incremental-build cache. `incremental: true` with no
49
+ # tsBuildInfoFile override makes tsc write <tsconfig dir>/tsconfig.tsbuildinfo,
50
+ # so any local `tsc --noEmit -p tsconfig.json` in platform/console or
51
+ # platform/admin dirties the tree. Build output, not source: already excluded
52
+ # from the images via .dockerignore.
53
+ *.tsbuildinfo
54
+ # `npm pack` output. The publish path and scripts/verify-npm-entrypoints.mjs
55
+ # both write a real tarball next to the manifest; none of them belong in git.
56
+ *.tgz
57
+
58
+ # IDE
59
+ .idea/
60
+ .vscode/
61
+ *.swp
62
+ *.swo
63
+ *~
64
+ .DS_Store
65
+
66
+ # Docker
67
+ docker-compose.override.yml
68
+
69
+ # Logs
70
+ *.log
71
+ logs/
72
+
73
+ # Coverage
74
+ coverage/
75
+ *.cover
76
+ htmlcov/
77
+
78
+ # Playwright
79
+ platform/console/playwright-report/
80
+ platform/console/test-results/
81
+ platform/admin/playwright-report/
82
+ platform/admin/test-results/
83
+ node_modules
84
+
85
+ # serverless provider test keys (never commit)
86
+ *provider-keys*.local.*
87
+ .serverless-secrets.local*
88
+
89
+ # slgateway load-harness reports (scripts/slgateway-load-harness.sh writes here)
90
+ services/slgateway-service/.harness-reports/
91
+
92
+ # Live-replay scratch tests: env-injected diagnostics, NEVER committed
93
+ # (AGENTS.md "Live ops"). Local copies keep working; git stops seeing them.
94
+ *_scratch_test.go
95
+
96
+ # Terraform (deploy/azure) — state lives remotely; plans and provider caches are local artifacts
97
+ **/.terraform/
98
+ *.tfplan
99
+ *.tfstate
100
+ *.tfstate.*
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 BIOS
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.