Skip to content

Commit

Permalink
README: add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
blocktrron committed Aug 13, 2024
1 parent e8f47ae commit 5350f5e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Freifunk Darmstadt Website

After the long and tedious years we've put up with the old Jekyll website,
it was decided to rewrite the website in ~~rust~~ python.

The website is built using [mkdocs](https://www.mkdocs.org/) and the
[material theme](https://squidfunk.github.io/mkdocs-material/).

Every page is written in markdown. A quick-start on how to write
a page for mkdocs can be found [here](https://www.mkdocs.org/user-guide/writing-your-docs/).

The framework allows you to use various markdown extendions which are documented
[here](https://squidfunk.github.io/mkdocs-material/reference/).

## Development

You can spawn a local development server by running `mkdocs serve` in the root directory
of this repository.

To run this in a docker container with the same environment as the CI/CD pipeline, you
can use the following command:

```bash
docker run -it --rm --volume $(pwd):/docs ghcr.io/squidfunk/mkdocs-material:9.5.18 serve
```

Make sure you are in the root directory of this repository when running this command.

0 comments on commit 5350f5e

Please sign in to comment.