-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8f47ae
commit 5350f5e
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |