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.
 
 
 
 
Luke Murphy 370a808a15
Move manifesto into article folder
5 years ago
content Move manifesto into article folder 5 years ago
themes/homebrewtheme stuffffff 5 years ago
.gitignore Add instructions for generating the site 5 years ago
Makefile first commit 5 years ago
README.md Add livereload, fix static path and update README 5 years ago
pelicanconf.py Move manifesto into article folder 5 years ago
publishconf.py first commit 5 years ago
requirements.txt Add requirements file 5 years ago
tasks.py Add livereload, fix static path and update README 5 years ago

README.md

nooo-hbsc

The new homebrewserver.club website.

https://homebrewserver.club/

Build the site locally

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

Then the site is available at the following URL:

http://localhost:8000

Working with the site

While working on the site, you can run the following:

$ invoke livereload

And then the Pelican development server will automatically reload when you make changes.

Deploying the site

Just run the usual:

$ git push origin master