9 lines
108 B
Python
9 lines
108 B
Python
from invoke import task
|
|
|
|
@task
|
|
def deploy(c):
|
|
...
|
|
|
|
@task
|
|
def run(c):
|
|
c.run("python main.py") |