예제 #1
0
def deploy():
    composer.install()
    composer.update()

    paths.symlink(
        paths.get_shared_path(".htaccess"),
        paths.get_current_path(".htaccess")
    )

    paths.symlink(
        paths.get_shared_path("wp-config.php"),
        paths.get_current_path("wp-config.php")
    )

    paths.symlink(
        paths.get_upload_path(),
        paths.get_current_path("wp-content/uploads")
    )
예제 #2
0
def after_deploy():
    paths.symlink(
        paths.get_shared_path(".htaccess"),
        paths.get_current_path(".htaccess")
    )

    paths.symlink(
        paths.get_upload_path(),
        paths.get_current_path("app/uploads")
    )
예제 #3
0
파일: wordpress.py 프로젝트: Frojd/Fabrik
def after_deploy():
    paths.symlink(
        paths.get_shared_path(".htaccess"),
        paths.get_current_path(".htaccess")
    )

    paths.symlink(
        paths.get_upload_path(),
        paths.get_current_path("wp-content/uploads")
    )
예제 #4
0
def after_deploy():
    paths.symlink(
        paths.get_upload_path(),
        paths.get_current_path("app/uploads")
    )

    paths.symlink(
        paths.get_shared_path("robots.txt"),
        paths.get_current_path("robots.txt")
    )

    env.run('rm -rf /var/run/nginx-cache/*')
    env.run('service nginx restart')
    env.run('service php7.0-fpm restart')

    env.run(
        "cd %s && "
        "wp --allow-root cache flush && "
        "wp --allow-root rewrite flush" % paths.get_current_path()
    )
예제 #5
0
def setup():
    env.run("touch %s" % paths.get_shared_path(".htaccess"))
    env.run("touch %s" % paths.get_shared_path(".env"))
예제 #6
0
파일: wordpress.py 프로젝트: Frojd/Fabrik
def deploy():
    paths.symlink(
        paths.get_shared_path("wp-config.php"),
        os.path.join(paths.get_source_path(env.current_release),
                     "wp-config.php")
    )
예제 #7
0
파일: wordpress.py 프로젝트: Frojd/Fabrik
def setup():
    env.run("touch %s" % paths.get_shared_path("wp-config.php"))
    env.run("chmod 400 %s" % paths.get_shared_path("wp-config.php"))

    env.run("touch %s" % paths.get_shared_path(".htaccess"))
    env.run("chmod 644 %s" % paths.get_shared_path(".htaccess"))
예제 #8
0
def setup():
    env.run("touch %s" % paths.get_shared_path(".htaccess"))
    env.run("touch %s" % paths.get_shared_path(".env"))
예제 #9
0
def deploy():
    paths.symlink(
        paths.get_shared_path(".env"),
        paths.get_current_release_path(".env")
    )
예제 #10
0
def setup():
    env.run("touch %s" % paths.get_shared_path(".env"))
    env.run("touch %s" % paths.get_shared_path("robots.txt"))
예제 #11
0
def symlink_env():
    paths.symlink(
        paths.get_shared_path(".env"),
        os.path.join(paths.get_source_path(env.current_release), ".env")
    )
예제 #12
0
def create_env():
    env.run("touch %s" % paths.get_shared_path(".env"))
    env.run("chmod 400 %s" % paths.get_shared_path(".env"))