2022-08-23 17:32:55 +00:00
|
|
|
# Copyright © 2022 Cerc
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
|
|
|
|
|
2022-08-24 03:27:42 +00:00
|
|
|
import click
|
|
|
|
|
2022-08-24 17:57:35 +00:00
|
|
|
from app import setup_repositories
|
|
|
|
from app import build_containers
|
|
|
|
from app import deploy_system
|
2022-08-24 03:27:42 +00:00
|
|
|
|
2022-08-24 17:57:35 +00:00
|
|
|
CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])
|
2022-08-24 03:27:42 +00:00
|
|
|
|
2022-08-24 18:29:51 +00:00
|
|
|
class Options(object):
|
|
|
|
def __init__(self, quiet, verbose, dry_run):
|
|
|
|
self.quiet = quiet
|
|
|
|
self.verbose = verbose
|
|
|
|
self.dry_run = dry_run
|
|
|
|
|
2022-08-24 17:57:35 +00:00
|
|
|
@click.group(context_settings=CONTEXT_SETTINGS)
|
|
|
|
@click.option('--quiet', default=False)
|
|
|
|
@click.option('--verbose', default=False)
|
|
|
|
@click.option('--dry-run', default=False)
|
2022-08-24 18:29:51 +00:00
|
|
|
# See: https://click.palletsprojects.com/en/8.1.x/complex/#building-a-git-clone
|
|
|
|
@click.pass_context
|
|
|
|
def cli(ctx, quiet, verbose, dry_run):
|
|
|
|
"""Laconic Stack Orchestrator"""
|
|
|
|
ctx.obj = Options(quiet, verbose, dry_run)
|
2022-08-24 17:57:35 +00:00
|
|
|
|
|
|
|
cli.add_command(setup_repositories.command,"setup-repositories")
|
|
|
|
cli.add_command(build_containers.command,"build-containers")
|
|
|
|
cli.add_command(deploy_system.command,"deploy-system")
|