def __init__(self): super(DjangoDeploy, self).__init__() required_envs([ 'host_string' ]) self.gunicorn = GunicornDeploy(release_path=env.remote_release_path)
def __init__(self): super(NginxDeploy, self).__init__() required_envs([ 'project_name', 'project_domain', 'gunicorn_port' ] )
def __init__(self, release_path): super(GunicornDeploy, self).__init__() self.release_path = release_path self.nginx = NginxDeploy() required_envs([ 'project_name', 'gunicorn_port' ])
def __init__(self): self.release_path = None self.django = DjangoDeploy() required_envs(["project_name", "remote_app_path", "user", "remote_release_path", "remote_virtualenv_path"])
def __init__(self, release_path): super(GunicornDeploy, self).__init__() self.release_path = release_path self.nginx = NginxDeploy() required_envs(['project_name', 'gunicorn_port'])