May 3, 2015 7:30 am
BTW: What technics/tools are you using for the site?
Plain PHP + Mysql? A Framework?
Whats your favourite editor?
How do you do unittesting? If you don't - why the hell not?
Are you using some sort of Issue tracking?
What VCS are you using?
I'm curious bcause I'm a web developer, too... I might have an idea or two to improve your prcess and save you work in the longer run.
You might be interested in using Selenium for web testing or maybe yu could use the testing component of the symfony framework.
Automated testing is everything today. Web tests take longer to run but if you run them once a day and keep them updated you'll find most bugs before they reach the user. For that you shuld have a separat test instance running. That culd be as little as a Raspberry Pi box. That's a miniature computer running linux that is availabe for less than $40. That would keep the processor and memory load from your development machine.
Ideally thse tests are triggered every time you are submitting to your VCS.
You should really invest in automating as much as you can. You might als think of some automatic build tool that triggers the tests and is capable of automaic deployment.
Setting all that up costs time at fist but saves you 100 times as much later on.
:-)
Plain PHP + Mysql? A Framework?
Whats your favourite editor?
How do you do unittesting? If you don't - why the hell not?
Are you using some sort of Issue tracking?
What VCS are you using?
I'm curious bcause I'm a web developer, too... I might have an idea or two to improve your prcess and save you work in the longer run.
You might be interested in using Selenium for web testing or maybe yu could use the testing component of the symfony framework.
Automated testing is everything today. Web tests take longer to run but if you run them once a day and keep them updated you'll find most bugs before they reach the user. For that you shuld have a separat test instance running. That culd be as little as a Raspberry Pi box. That's a miniature computer running linux that is availabe for less than $40. That would keep the processor and memory load from your development machine.
Ideally thse tests are triggered every time you are submitting to your VCS.
You should really invest in automating as much as you can. You might als think of some automatic build tool that triggers the tests and is capable of automaic deployment.
Setting all that up costs time at fist but saves you 100 times as much later on.
:-)