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") )
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") )
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") )
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() )
def setup(): env.run("touch %s" % paths.get_shared_path(".htaccess")) env.run("touch %s" % paths.get_shared_path(".env"))
def deploy(): paths.symlink( paths.get_shared_path("wp-config.php"), os.path.join(paths.get_source_path(env.current_release), "wp-config.php") )
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"))
def deploy(): paths.symlink( paths.get_shared_path(".env"), paths.get_current_release_path(".env") )
def setup(): env.run("touch %s" % paths.get_shared_path(".env")) env.run("touch %s" % paths.get_shared_path("robots.txt"))
def symlink_env(): paths.symlink( paths.get_shared_path(".env"), os.path.join(paths.get_source_path(env.current_release), ".env") )
def create_env(): env.run("touch %s" % paths.get_shared_path(".env")) env.run("chmod 400 %s" % paths.get_shared_path(".env"))