akkoma/docs
Norm b5d06a3db8
Some checks are pending
ci/woodpecker/pr/woodpecker Pipeline is pending
docs/installation: Update required Elixir version to 1.12
Some dependencies will refuse to work on Elixir 1.10 (and presumably 1.9). One dependency states 1.13 as a requirement but will still work on 1.12 just fine.
2022-08-03 12:01:13 +00:00
..
docs docs/installation: Update required Elixir version to 1.12 2022-08-03 12:01:13 +00:00
theme/partials Documentation updates for stable release (#73) 2022-07-15 12:27:16 +00:00
Makefile rename-flavours (#123) 2022-07-28 10:36:51 +00:00
mkdocs.yml doc: update repo link from docs to akkoma 2022-07-19 12:36:09 +03:00
Pipfile Documentation updates for stable release (#73) 2022-07-15 12:27:16 +00:00
Pipfile.lock Documentation updates for stable release (#73) 2022-07-15 12:27:16 +00:00
README.md Documentation updates for stable release (#73) 2022-07-15 12:27:16 +00:00
requirements.txt Documentation updates for stable release (#73) 2022-07-15 12:27:16 +00:00

Building the docs

You don't need to build and test the docs as long as you make sure the syntax is correct. But in case you do want to build the docs, feel free to do so.

You'll need to install mkdocs for which you can check the mkdocs installation guide. Generally it's best to install it using pip. You'll also need to install the correct dependencies.

Example using a Debian based distro

1. Install pipenv and dependencies

pip install pipenv
pipenv sync

2. (Optional) Activate the virtual environment

Since dependencies are installed in a virtual environment, you can't use them directly. To use them you should either prefix the command with pipenv run, or activate the virtual environment for current shell by executing pipenv shell once.

3. Build the docs using the script

[pipenv run] make all

4. Serve the files

A folder site containing the static html pages will have been created. You can serve them from a server by pointing your server software (nginx, apache...) to this location. During development, you can run locally with

[pipenv run] mkdocs serve

This handles setting up an http server and rebuilding when files change. You can then access the docs on http://127.0.0.1:8000