Deployer offers PHP developers a streamlined, zero-downtime deployment process, supporting major PHP frameworks. It is the ideal choice for secure, interruption-free deployment, automating and simplifying deployment tasks in the PHP environment. - Source: dev.to / about 22 hours ago
I use deploybot.com to handle like 10 different Drupal installs, on a shared hosting. See also https://deployer.org but you can have your "light" platform.sh on a reasonably cheap shared hosting. Source: 9 months ago
Yes, in combination with PHP deployer: https://deployer.org/. Source: 12 months ago
Is there an equivalent for deployer in .NET world? https://deployer.org/. - Source: Hacker News / about 1 year ago
We have recently moved from jenkins + deployer.org to envoyer.. Alot of value and ease of life considering the monthly fee.... Source: about 1 year ago
The easiest way to switch from your current ssh -> git pull deployment to CI deployment is the switch to Deployer. https://deployer.org/ which is doing something similar but in a blue/green deployment way. A github action for it can look like this:. Source: about 1 year ago
I would also check out PHP Deployer (https://deployer.org/) as an open source/free alternative to some of those paid solutions mentioned in other comments. Source: about 1 year ago
We run a GitHub Actions workflow on push to master / PR merges for our Laravel apps that builds our assets, runs tests & code quality checks, then deploys to our server(s) using Deployer. Source: about 1 year ago
I use deployer and deployphp github action. Source: about 1 year ago
Setup blue/green deployments or go fancy with something like deployer. Source: over 1 year ago
I'm not looking for a hosting, I'm looking for the equivalent of deployer.org for node. A package that handles the process to git pull, install dependencies, rollback if necessary, etc... When I search for "how to deploy a node app" all I get is tutorials on how to deploy to Heroku, Vercel & other cloud providers :(. Source: over 1 year ago
If you aren't then https://deployer.org/ is pretty easy for beginners. Source: over 1 year ago
Yes, like Deployer. Or I deliver my crap in a way that doesn't use git directly (if at all), like docker images that already include all of the code needed. Source: over 1 year ago
The following Deployer workflow is a nice option if your target production server supports composer, NodeJS and SSH. You can write your deploy routine in PHP (instead of fiddling around with Github Action pipeline commands) and test it beforehand locally. - Source: dev.to / over 1 year ago
Namespace Deployer; Require 'contrib/npm.php'; // https://deployer.org/docs/7.x/contrib/npm Import('recipe/statamic.php'); // https://deployer.org/docs/7.x/recipe/statamic Set('application', 'My Statamic Site'); // The git repository which should be used Set('repository', '[email protected]:mandrasch/my-statamic-site.git'); // Targets for deployment (SSH), // this will be called via 'ddev dep deploy... - Source: dev.to / over 1 year ago
We also currently deploy using a script which ssh's in to the server (similar to Deployer) which needs access. Source: over 1 year ago
Two deployment techs I use for non-containerized apps work in roughly the same way. Capistrano And Deployer. Source: almost 2 years ago
Second, as you are using this for deployment, I would properly recommend using tools designed for that, it could be deployer. Source: about 2 years ago
SSH-ing into servers and doing a git pull is an approach I've used before with PHP. One thing to lookout for is if that server is taking requests during the git pull. If so, this can lead to some requests failing as files change during the pull. A way to address this is to have a symlink'ed webroot. That way you can keep multiple copies of your repo on the server and swap the symlink once the git pull is done.... Source: about 2 years ago
Ansible is great but if you feel that it's too much, you could start with someting like deployer.org, that you can configure and run locally or from CI. Source: about 2 years ago
If you know ssh or would like to dive into it, I’d give deployer a go. If not, just use forge. You’ll need git for both of these. Source: over 2 years ago
Do you know an article comparing Deployer to other products?
Suggest a link to a post with product alternatives.
This is an informative page about Deployer. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.