コード例 #1
0
ファイル: django.py プロジェクト: petry/old_fabric-recipes
    def __init__(self):
        super(DjangoDeploy, self).__init__()
        required_envs([
            'host_string'
        ])

        self.gunicorn = GunicornDeploy(release_path=env.remote_release_path)
コード例 #2
0
ファイル: django.py プロジェクト: sicksid/fabric-recipes
    def __init__(self):
        super(DjangoDeploy, self).__init__()
        required_envs([
            'host_string'
        ])

        self.gunicorn = GunicornDeploy(release_path=env.remote_release_path)
コード例 #3
0
ファイル: nginx.py プロジェクト: sicksid/fabric-recipes
 def __init__(self):
     super(NginxDeploy, self).__init__()
     required_envs([
         'project_name',
         'project_domain',
         'gunicorn_port'
     ]
     )
コード例 #4
0
ファイル: gunicorn.py プロジェクト: petry/old_fabric-recipes
    def __init__(self, release_path):
        super(GunicornDeploy, self).__init__()
        self.release_path = release_path
        self.nginx = NginxDeploy()

        required_envs([
            'project_name',
            'gunicorn_port'
        ])
コード例 #5
0
ファイル: project.py プロジェクト: petry/old_fabric-recipes
    def __init__(self):
        self.release_path = None

        self.django = DjangoDeploy()

        required_envs(["project_name", "remote_app_path", "user", "remote_release_path", "remote_virtualenv_path"])
コード例 #6
0
ファイル: gunicorn.py プロジェクト: sicksid/fabric-recipes
    def __init__(self, release_path):
        super(GunicornDeploy, self).__init__()
        self.release_path = release_path
        self.nginx = NginxDeploy()

        required_envs(['project_name', 'gunicorn_port'])