Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

davorminchorov's avatar

Going to Production Tips And Tricks

Hey,

Let's say that you have a project you work on for some client, and you work on it for a few months. When you are done, you want to deploy the app to a hosting service.

My question is: What are the steps you take (during both development and in production) to make sure the application is ready for the client/users to use it?

0 likes
4 replies
djay's avatar

Hi @Ruffles

Just try to follow best practices, if you are not sure take advices and suggestions from others. As your knowledge will increase, your code will automatically become ready for your clients

ipalaus's avatar

In the server side, I would check that you have all the required software for your application to work: extensions, versions, etc. On big projects, I usually have a checklist to run through before adding/promoting a server to production. This is applicable in any size app.

austenc's avatar

I would recommend using Rocketeer if you're looking for a deployment tool. It's pretty slick. Other than that, a lot of people seem to enjoy using Forge. I like to have more fine-grained control of my servers though, so I typically use my own provisioning script (on Linode) and manage my own servers.

Drfraker's avatar

Forge is awesome. It makes deployment so easy.

1 like

Please or to participate in this conversation.