Ejemplo n.º 1
0
def delete(project_name: str):
    '''erase or delete an application'''
    status = controller.Status(project_name)
    status.deleteApp()
Ejemplo n.º 2
0
def restart(project_name: str):
    '''Restart one application'''
    status = controller.Status(project_name)
    status.retartApp()
Ejemplo n.º 3
0
def start(project_name: str):
    '''start one stopped application'''
    status = controller.Status(project_name)
    status.startApp()
Ejemplo n.º 4
0
def stop(project_name: str):
    '''start one running application'''
    status = controller.Status(project_name)
    status.stopApp()
Ejemplo n.º 5
0
def up(path: str):
    '''up one deleted application'''
    status = controller.Status(None, path)
    status.upApp()