8 lines
228 B
Python
8 lines
228 B
Python
import click
|
|
|
|
@click.command()
|
|
@click.option('-c', default="dft_project.yml", help='Build your flow with scheduler and deploy them to your server.')
|
|
def deploy(config):
|
|
click.echo("Deploying your query files to server...")
|
|
|