Init the wiki

This commit is contained in:
Luke Murphy 2020-04-05 18:55:24 +02:00
commit 6bf55b980d
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
4 changed files with 31 additions and 0 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# wiki.hbbs.decentral1.se
Wiki for the Homebrew Bioscoop.
> https://wiki.hbbs.decentral1.se
# Contribute
```
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt
$ mkdocs serve
```

7
docs/index.md Normal file
View File

@ -0,0 +1,7 @@
# Homebrew Bioscoop Wiki
[TOC]
## Hello
World

8
mkdocs.yml Normal file
View File

@ -0,0 +1,8 @@
---
site_name: Homebrew Bioscoop Wiki
site_url: https://wiki.hbbs.decentral1.se
theme: alabaster
nav:
- Wiki: index.md
markdown_extensions:
- toc

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
mkdocs==1.0.4
mkdocs-alabaster==0.7.7