Homebrewserver.club website
https://homebrewserver.club/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lidia pereira
f06bc5c350
|
5 years ago | |
---|---|---|
content | 5 years ago | |
plugins | 5 years ago | |
themes/homebrewtheme | 5 years ago | |
.gitignore | 5 years ago | |
Makefile | 5 years ago | |
README.md | 5 years ago | |
pelicanconf.py | 5 years ago | |
publishconf.py | 5 years ago | |
requirements.txt | 5 years ago | |
tasks.py | 5 years ago |
README.md
nooo-hbsc
The new homebrewserver.club website.
Build the site locally
Get a local copy
$ git clone --recurse-submodules https://git.vvvvvvaria.org/varia/nooo-hbsc
System requirements
Install the system requirements:
$ apt install -y python3 python3-dev python3-venv
Python requirements
Then create a virtual environment and activate it:
$ python3 -m venv .venv
$ source .venv/bin/activate
Then install the requirements:
$ pip install -r requirements.txt
Generating the site
Generate the content and run the server:
$ pelican content
$ pelican --listen --relative-urls
Then the site is available at the following URL:
Working with the site
- Website articles and content are in content
- The website theme is in themes/homebrewtheme
- Images are stored in content/images
- Configs are stored in content/downloads
While working on the site, you can run the following:
$ pelican --autoreload --listen --relative-urls
Writing drafts
Use Status: draft
in the article metadata. When the site is generated, the
output/drafts
folder will be created with your new draft article. This allows
us to work on new articles and still store the pages here in the repository.
Deploying the site
TODO.