blob: 0a76a9ac5f86a1513c6a899776aac42ce35f3904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"""
Build the static site
"""
import click
from app.site.builder import build_site
@click.command()
@click.pass_context
def cli(ctx):
"""Build the static site
"""
print('Building the site...')
build_site()
|