An open API service indexing awesome lists of open source software.

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)

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
```