From the course: Upgrading Legacy WordPress Projects: Modernize Workflows and Codebase
Unlock this course with a free trial
Join today to access over 24,900 courses taught by industry experts.
Manual deployment with RSYNC/SFTP - WordPress Tutorial
From the course: Upgrading Legacy WordPress Projects: Modernize Workflows and Codebase
Manual deployment with RSYNC/SFTP
- [Instructor] While many teams use automated deployment pipelines, manual deployment is still useful in many cases, especially for small projects, quick updates, or situations where automation isn't available. In this video we'll cover the key methods for manual deployment, when to use them, and best practices for ensuring security and efficiency. Let's get started. Manual deployment involves directly transferring files from your local system to a remote server. While automation is great for larger teams, manual deployment is beneficial for small updates that don't justify setting up automation, legacy servers that don't support CI/CD pipelines, and emergency fixes where quick deployment is needed without automation set up. In WordPress development two popular methods for manual deployment are SFTP, or Secure File Transfer Protocol. This is a secure way to transfer files between your local machine and a server. And RSYNC, or Remote Sync, a more efficient tool that only syncs new or…