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

https://github.com/stevedev7/mkdocs-101

Repo to implement and play around with mkdocs.
https://github.com/stevedev7/mkdocs-101

github-actions mkdocs mkdocs-material

Last synced: about 1 month ago
JSON representation

Repo to implement and play around with mkdocs.

Awesome Lists containing this project

README

        

# MkDocs Demo

This repository is for learning how to set up a documentation website using Mkdocs.
I'll be using [Material](https://squidfunk.github.io/mkdocs-material/) theme for this.

## Steps to run locally

1) Create a python virtual environment

```bash
python3 -m venv venv
```

1) Activate the virtual environment

```bash
source venv/bin/activate
```

1) Install dependancies.

```bash
pip install -r requirements.txt
```

1) Spin up a dev server.

```bash
mkdocs serve
```

1) Your docs are served on .