|
|
|
|
|
by d1sxeyes
250 days ago
|
|
If you're familiar with cPanel, these tools are basically cPanel for the 2020s. As a web developer, you develop your app on your computer (normally), but then folks can't actually access your app when it's running on your computer, it needs to be deployed to a publicly accessible web host. Basically, these tools run on your servers and give you nice front ends which allow you to build and host your web apps. Most of them integrate with your version control system so you can automatically build and deploy your app based on specific rules (often 'when main gets updated') or allow you to create preview deployments (if I merged my-feature-branch into main, what would my web app look like?) Coolify and Dokploy do this with containers, this tool apparently doesn't. Vercel, Netlify and others offer this as a service (you pay us $X per month and we manage it all for you), these tools run on your own server (either one you actually own or one you rent from a cloud provider). |
|
In contrast, this app's description states that it is for deploying your own apps. So does it have any integrations (like cPanel does) with anything? Or is it more like a CI/CD tool (think gitlab-ci or Jenkins)?