Add module files

This commit is contained in:
David Boreham 2023-10-24 21:57:51 -06:00
parent 50847877ed
commit bbdb938de8
6 changed files with 7 additions and 7 deletions

0
app/deploy/__init__.py Normal file
View File

View File

View File

@ -16,8 +16,8 @@
import click import click
from pathlib import Path from pathlib import Path
import sys import sys
from app.deploy import up_operation, down_operation, ps_operation, port_operation from app.deploy.deploy import up_operation, down_operation, ps_operation, port_operation
from app.deploy import exec_operation, logs_operation, create_deploy_context from app.deploy.deploy import exec_operation, logs_operation, create_deploy_context
from app.deploy.stack import Stack from app.deploy.stack import Stack
from app.deploy.spec import Spec from app.deploy.spec import Spec

View File

0
app/repos/__init__.py Normal file
View File

10
cli.py
View File

@ -16,12 +16,12 @@
import click import click
from app.command_types import CommandOptions from app.command_types import CommandOptions
from app import setup_repositories from app.repos import setup_repositories
from app import build_containers from app.build import build_containers
from app import build_npms from app.build import build_npms
from app import deploy from app.deploy import deploy
from app import version from app import version
from app import deployment from app.deploy import deployment
from app import update from app import update
CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help']) CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])