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