This commit is contained in:
lowrussia 2021-03-19 14:03:17 +01:00
commit 4d400f20d6
3 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,7 @@ dependencies:
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi @if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
run: core-plugins dependencies run: core-plugins dependencies
@.venv/bin/pelican --autoreload @.venv/bin/pelican --autoreload --listen
publish: publish:
@.venv/bin/pelican -o /var/www/html/ @.venv/bin/pelican -o /var/www/html/

View File

@ -59,12 +59,12 @@ THEME_STATIC_DIR = "theme/"
I18N_SUBSITES = { I18N_SUBSITES = {
"en": { "en": {
"SITESUBTITLE": u"Centre for Everyday Technology", "SITESUBTITLE": u"",
"SITEURL": "varia.zone/en", "SITEURL": "varia.zone/en",
"locale": "en_US.UTF-8", "locale": "en_US.UTF-8",
}, },
"nl": { "nl": {
"SITESUBTITLE": u"Centrum voor Alledaagse Technologie", "SITESUBTITLE": u"",
"SITEURL": "varia.zone", "SITEURL": "varia.zone",
"locale": "nl.UTF-8", "locale": "nl.UTF-8",
}, },

View File

@ -4,3 +4,4 @@ beautifulsoup4==4.9.3
html5lib==1.1 html5lib==1.1
icalendar==4.0.7 icalendar==4.0.7
pelican==4.5.4 pelican==4.5.4
pytz==2020.1