|
@ -3,22 +3,19 @@ |
|
|
import os |
|
|
import os |
|
|
import shutil |
|
|
import shutil |
|
|
import sys |
|
|
import sys |
|
|
import datetime |
|
|
|
|
|
|
|
|
|
|
|
from invoke import task |
|
|
from invoke import task |
|
|
from invoke.util import cd |
|
|
from livereload import Server |
|
|
from pelican.server import ComplexHTTPRequestHandler, RootedHTTPServer |
|
|
from pelican.server import ComplexHTTPRequestHandler, RootedHTTPServer |
|
|
|
|
|
|
|
|
CONFIG = { |
|
|
CONFIG = { |
|
|
# Local path configuration (can be absolute or relative to tasks.py) |
|
|
'content_path': 'content', |
|
|
'deploy_path': 'output', |
|
|
'deploy_path': 'output', |
|
|
# Remote server configuration |
|
|
|
|
|
'production': 'lidia@varia.zone:12345', |
|
|
|
|
|
'dest_path': '/var/www/homebrewserver.club', |
|
|
'dest_path': '/var/www/homebrewserver.club', |
|
|
# Port for `serve` |
|
|
|
|
|
'port': 8000, |
|
|
'port': 8000, |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def clean(c): |
|
|
def clean(c): |
|
|
"""Remove generated files""" |
|
|
"""Remove generated files""" |
|
@ -26,21 +23,25 @@ def clean(c): |
|
|
shutil.rmtree(CONFIG['deploy_path']) |
|
|
shutil.rmtree(CONFIG['deploy_path']) |
|
|
os.makedirs(CONFIG['deploy_path']) |
|
|
os.makedirs(CONFIG['deploy_path']) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def build(c): |
|
|
def build(c): |
|
|
"""Build local version of site""" |
|
|
"""Build local version of site""" |
|
|
c.run('pelican -s pelicanconf.py') |
|
|
c.run('pelican -s pelicanconf.py') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def rebuild(c): |
|
|
def rebuild(c): |
|
|
"""`build` with the delete switch""" |
|
|
"""`build` with the delete switch""" |
|
|
c.run('pelican -d -s pelicanconf.py') |
|
|
c.run('pelican -d -s pelicanconf.py') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def regenerate(c): |
|
|
def regenerate(c): |
|
|
"""Automatically regenerate site upon file modification""" |
|
|
"""Automatically regenerate site upon file modification""" |
|
|
c.run('pelican -r -s pelicanconf.py') |
|
|
c.run('pelican -r -s pelicanconf.py') |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def serve(c): |
|
|
def serve(c): |
|
|
"""Serve site at http://localhost:8000/""" |
|
|
"""Serve site at http://localhost:8000/""" |
|
@ -49,19 +50,20 @@ def serve(c): |
|
|
allow_reuse_address = True |
|
|
allow_reuse_address = True |
|
|
|
|
|
|
|
|
server = AddressReuseTCPServer( |
|
|
server = AddressReuseTCPServer( |
|
|
CONFIG['deploy_path'], |
|
|
CONFIG['deploy_path'], ('', CONFIG['port']), ComplexHTTPRequestHandler |
|
|
('', CONFIG['port']), |
|
|
) |
|
|
ComplexHTTPRequestHandler) |
|
|
|
|
|
|
|
|
|
|
|
sys.stderr.write('Serving on port {port} ...\n'.format(**CONFIG)) |
|
|
sys.stderr.write('Serving on port {port} ...\n'.format(**CONFIG)) |
|
|
server.serve_forever() |
|
|
server.serve_forever() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def reserve(c): |
|
|
def reserve(c): |
|
|
"""`build`, then `serve`""" |
|
|
"""`build`, then `serve`""" |
|
|
build(c) |
|
|
build(c) |
|
|
serve(c) |
|
|
serve(c) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def preview(c): |
|
|
def preview(c): |
|
|
"""Build production version of site""" |
|
|
"""Build production version of site""" |
|
@ -70,11 +72,13 @@ def preview(c): |
|
|
|
|
|
|
|
|
@task |
|
|
@task |
|
|
def publish(c): |
|
|
def publish(c): |
|
|
"""Publish to production via rsync""" |
|
|
"""Publish to production via Git hook""" |
|
|
c.run('pelican -s publishconf.py') |
|
|
c.run('git push origin master') |
|
|
c.run( |
|
|
|
|
|
'rsync --delete --exclude ".DS_Store" -pthrvz -c ' |
|
|
|
|
|
'{} {production}:{dest_path}'.format( |
|
|
|
|
|
CONFIG['deploy_path'].rstrip('/') + '/', |
|
|
|
|
|
**CONFIG)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@task |
|
|
|
|
|
def livereload(c): |
|
|
|
|
|
"""Get automatic live reloading when hacking on the site""" |
|
|
|
|
|
server = Server() |
|
|
|
|
|
server.watch(CONFIG['content_path'], lambda: build(c)) |
|
|
|
|
|
server.serve(root=CONFIG['deploy_path'], port=CONFIG['port']) |
|
|