https://github.com/4ms/metamodule-docs-website
Website source for metamodule docs (metamodule.info/docs)
https://github.com/4ms/metamodule-docs-website
Last synced: about 2 months ago
JSON representation
Website source for metamodule docs (metamodule.info/docs)
- Host: GitHub
- URL: https://github.com/4ms/metamodule-docs-website
- Owner: 4ms
- Created: 2024-08-23T01:48:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-03-16T16:38:27.000Z (3 months ago)
- Last Synced: 2026-03-16T18:52:22.092Z (3 months ago)
- Language: HTML
- Size: 41.2 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# MetaModule Docs
Requires mkdocs and material theme (installed by requirements.txt).
Clone the repo and set up a python venv (the first time):
```
git clone .../metamodule-docs
cd metamodule-docs
python3 -m venv pyenv
source pyenv/bin/activate
pip install -r requirements.txt
```
To end the python venv:
```
deactivate
```
From now on when you want to serve or build the site:
```
cd metamodule-docs
source pyenv/bin/activate
# To serve it at localhost:8000
make serve
# To build the static site to metamodule-docs/
make build
```