I'm thinking about a good workflow for php/mysql web-development.
Anybody got some tips?
|
feedback
|
|
Here is what we do:
We have a few custom scripts that take care of our database upgrades and our push to Production. For our database we keep all the deltas in a single folder and the script checks the current DB level against the available deltas and, if needed, applies them. For promotion to Production we have another script that pulls down all the production data and then runs rsync to push up changes. You don't mention what level of control you have over the servers, but the overall process would be the same for general development. | |||
feedback
|
|
I think everybody does theese things slightly different, depending on the exact application. Here's our setup: Before a release:
Once it's stabilised, we run the deploy script:
If we need to push a small change out quickly, we merge it to the current tag, and we can then run a much simpler hotfix process at the server:
Note that there are certain tools that are aimed at structuring/automating theese processes. Phing is one, and Symfony has its own batch system, which used to be a stand alone project called pake. And as if that's not enough, Zend Framework are about to create their own variant. It's all really a bit of a mess, but Phing is probably the most widely used. You can also use something non-php specific, such as Ant or Capistrano. We just use shell scripts, which basically fills the same need. We also have a continuous build running, which checks out from the trunk and runs all tests. Currently we just have a basic collection of shell scripts doing it, but we're considering to switch to PhpUnderControl or xinc. The migrations step perhaps deserves a bit explanation. Theese contains changes to the database, as well as other tasks that must be run for the new release. Our migrations are a bit simple at the moment; We simply have a folder with a bunch of | ||||
|
feedback
|
|
Ours is a lit simpler than dragonmantank's (we develop in the Devel branch, and when we want to make it live, we svn merge all the changes into the live branch), but I will recommend strongly treating your configuration data (data that's mostly read by the application and not created by it) as you would source code. Version your .sql files. Because your data affects your website's functionality just as much as the source code does. | |||
|
feedback
|