Yes, in combination with PHP deployer: https://deployer.org/. - Source: Reddit / 25 days ago
Is there an equivalent for deployer in .NET world? https://deployer.org/. - Source: Hacker News / about 2 months ago
We have recently moved from jenkins + deployer.org to envoyer.. Alot of value and ease of life considering the monthly fee.... - Source: Reddit / 3 months 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: Reddit / 3 months 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: Reddit / 3 months 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: Reddit / 3 months ago
I use deployer and deployphp github action. - Source: Reddit / 3 months ago
Setup blue/green deployments or go fancy with something like deployer. - Source: Reddit / 5 months 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: Reddit / 5 months ago
If you aren't then https://deployer.org/ is pretty easy for beginners. - Source: Reddit / 5 months 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: Reddit / 7 months 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 / 8 months 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 / 9 months ago
We also currently deploy using a script which ssh's in to the server (similar to Deployer) which needs access. - Source: Reddit / 10 months ago
Two deployment techs I use for non-containerized apps work in roughly the same way. Capistrano And Deployer. - Source: Reddit / 10 months ago
Second, as you are using this for deployment, I would properly recommend using tools designed for that, it could be deployer. - Source: Reddit / about 1 year 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: Reddit / about 1 year 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: Reddit / over 1 year 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: Reddit / over 1 year ago
This is not accurate. While some shared hosts offer node or rails you will be limited by memory and it might not even run your app. The reason PHP is so good for shared hosting is that it runs per request and when you have rarely visited PHP application it requires basically no resources. You can have 100s of small websites sharing resources that get few visitors a day on single server and it will be fine. Try... - Source: Hacker News / over 1 year ago
I use Deployer - for both personal and work projects. It's easy to configure, simple to use and it uses "atomic deployments" - so there is zero downtime. - Source: Reddit / over 1 year ago
Do you know an article comparing Deployer to other products?
Suggest a link to a post with product alternatives.