No description
- JavaScript 55.2%
- CSS 36.9%
- Makefile 4.2%
- Shell 3.7%
|
|
||
|---|---|---|
| .github/workflows | ||
| dist | ||
| site | ||
| wiki | ||
| .gitignore | ||
| build.mjs | ||
| build.sh | ||
| LICENSE | ||
| Makefile | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
MuxCore Docs
Static HTML site rendered from the MuxCore wiki
(core.wiki markdown). Laptop-friendly: no paid GitHub Pages required — ship dist/ in
the repo or download the CI artifact / Release.
Quick start
# From a MuxCore workspace that has sibling core.wiki:
make build
# or
./build.sh
# Serve
npx --yes serve dist -l 8080
# or: python3 -m http.server -d dist 8080
Build prefers ../core.wiki when present and syncs into ./wiki/; otherwise uses the
committed ./wiki/ snapshot so CI and clones work standalone.
Layout
| Path | Role |
|---|---|
wiki/ |
Markdown snapshot (GitHub wiki pages) |
site/style.css |
Shared stylesheet |
build.mjs |
Markdown → HTML |
dist/ |
Generated site (index.html = Home) |
.github/workflows/ci.yml |
Self-hosted build + artifact upload |
Update content
- Edit the wiki (
corewiki or local../core.wiki). make sync-wiki(or justmake build— it syncs automatically).- Commit updated
wiki/anddist/if you want the repo to serve offline without a rebuild.