Add installation instructions

This commit is contained in:
Luke Murphy 2019-06-12 15:02:15 +02:00
parent 99e9bc89f9
commit 39fd9f4a72
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

28
README.md Normal file
View File

@ -0,0 +1,28 @@
# nooo-hbsc
Revamped homebrewserver.club website.
## Build the site locally
### Preparing your system
Install the prerequisites:
```bash
$ apt install -y python3 python-3 python3-venv
```
### Installing the Python requirements
Then create a virtual environment and activate it with:
```bash
$ python3 -m venv .venv
$ source .venv/bin/activate
```
Then install the requirements:
```bash
$ pip install pelican
```