Skip to content

Commit 81b7517

Browse files
committed
chore: RSR sync and mass repository update
1 parent 268a8ba commit 81b7517

2 files changed

Lines changed: 101 additions & 6 deletions

File tree

.gitignore

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# RSR-compliant .gitignore
12
# Julia
23
/Manifest.toml
34
*.jl.cov
@@ -24,3 +25,96 @@
2425
# OS
2526
.DS_Store
2627
Thumbs.db
28+
29+
30+
# OS & Editor
31+
.DS_Store
32+
Thumbs.db
33+
*.swp
34+
*.swo
35+
*~
36+
.idea/
37+
.vscode/
38+
39+
40+
# Build
41+
/target/
42+
/_build/
43+
/build/
44+
/dist/
45+
/out/
46+
/zig-out/
47+
/zig-cache/
48+
49+
50+
# Dependencies
51+
/node_modules/
52+
/vendor/
53+
/deps/
54+
/.elixir_ls/
55+
56+
57+
# Rust
58+
59+
# Cargo.lock # Keep for binaries
60+
61+
62+
# Elixir
63+
/cover/
64+
/doc/
65+
*.ez
66+
erl_crash.dump
67+
68+
69+
# ReScript
70+
/lib/bs/
71+
/.bsb.lock
72+
73+
74+
# Python (SaltStack only)
75+
__pycache__/
76+
*.py[cod]
77+
.venv/
78+
79+
80+
# Ada/SPARK
81+
*.ali
82+
/obj/
83+
/bin/
84+
85+
86+
# Haskell
87+
/.stack-work/
88+
/dist-newstyle/
89+
90+
91+
# Chapel
92+
*.chpl.tmp.*
93+
94+
95+
# Secrets
96+
.env
97+
.env.*
98+
*.pem
99+
*.key
100+
secrets/
101+
102+
103+
# Test/Coverage
104+
/coverage/
105+
htmlcov/
106+
107+
108+
# Logs
109+
*.log
110+
/logs/
111+
112+
113+
# Machine-readable locks
114+
.machine_readable/.locks/
115+
116+
117+
# Temp
118+
/tmp/
119+
*.tmp
120+
*.bak

contractiles/k9/README.adoc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ K9 contractiles integrate with other RSR standards:
130130
⚠️ **Never run as root unless required** +
131131
⚠️ **Sandbox external components**
132132

133-
**See:** https://github.com/hyperpolymath/k9-svc/blob/main/docs/SECURITY-BEST-PRACTICES.adoc
133+
**See:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/docs/SECURITY-BEST-PRACTICES.adoc
134134

135135
== Template Files
136136

@@ -154,14 +154,15 @@ chmod +x nickel && sudo mv nickel /usr/local/bin/
154154
cargo install just
155155
156156
# Clone K9-SVC (for must shim and tooling)
157-
git clone https://github.com/hyperpolymath/k9-svc.git
157+
git clone https://github.com/hyperpolymath/standards.git
158+
# Note: K9-SVC is located in standards/k9-svc
158159
----
159160

160161
== Learn More
161162

162-
- **K9-SVC Specification:** https://github.com/hyperpolymath/k9-svc/blob/main/SPEC.adoc
163-
- **K9 User Guide:** https://github.com/hyperpolymath/k9-svc/blob/main/GUIDE.adoc
164-
- **Security Documentation:** https://github.com/hyperpolymath/k9-svc/blob/main/docs/SECURITY-FAQ.adoc
163+
- **K9-SVC Specification:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/SPEC.adoc
164+
- **K9 User Guide:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/GUIDE.adoc
165+
- **Security Documentation:** https://github.com/hyperpolymath/standards/blob/main/k9-svc/docs/SECURITY-FAQ.adoc
165166
- **IANA Media Type:** `application/vnd.k9+nickel`
166167

167168
== Contributing
@@ -174,4 +175,4 @@ When adding K9 contractiles to your repository:
174175
4. Sign Hunt-level components before committing
175176
5. Add K9 validation to CI/CD pipeline
176177

177-
**Questions?** Open an issue on https://github.com/hyperpolymath/k9-svc
178+
**Questions?** Open an issue on https://github.com/hyperpolymath/standards/tree/main/k9-svc

0 commit comments

Comments
 (0)