KeiSeiKit-1.0/install/launchd-templates/mdbook-server.plist.tmpl
Parfii-bot a4e667de10 KeiSeiKit-public — clean state
Single-commit clean baseline after security scrub of niche-tells,
project codenames, internal jargon, and contributor-email leaks.

Contents:
- 100 Rust crates (_primitives/_rust/)
- 37 agent manifests (_manifests/) + generated specs (_generated/)
- 67 user-invocable skills (skills/)
- 33 hooks (hooks/)
- Composition blocks (_blocks/)
- Documentation (docs/, README.md)
- TS adapter packages (_ts_packages/)
- Assembler (_assembler/)
- Roles (_roles/)
- Templates (_templates/)
- Forgejo CI (.forgejo/)

Author: Denis Parfionovich <info@greendragon.info>

License: see LICENSE.
2026-05-01 12:09:03 +08:00

63 lines
1.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.keisei.mdbook-server</string>
<!--
ProgramArguments invokes the wrapper so the mdbook binary is resolved
at launch time (cargo install location vs brew install location can
vary across hosts). See lib-dev-hub-mdbook.sh::write_serve_wrapper.
`--no-rebuild` is set because rebuilds are owned by the
mdbook-rebuilder timer plist.
-->
<key>ProgramArguments</key>
<array>
<string>${KIT}/dev-hub/mdbook-serve.sh</string>
</array>
<key>WorkingDirectory</key>
<string>${DATA}</string>
<key>EnvironmentVariables</key>
<dict>
<key>HOME</key>
<string>${HOME}</string>
<key>USER</key>
<string>${USER}</string>
<key>PATH</key>
<string>${HOME}/.cargo/bin:${BREW}/bin:/usr/bin:/bin</string>
</dict>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>${LOGS}/server.out.log</string>
<key>StandardErrorPath</key>
<string>${LOGS}/server.err.log</string>
<key>ProcessType</key>
<string>Background</string>
<key>ThrottleInterval</key>
<integer>30</integer>
<key>SoftResourceLimits</key>
<dict>
<key>NumberOfFiles</key>
<integer>4096</integer>
</dict>
<key>HardResourceLimits</key>
<dict>
<key>NumberOfFiles</key>
<integer>8192</integer>
</dict>
</dict>
</plist>