http://www.perlmonks.org?node_id=507031


in reply to Re^2: What is YOUR Development Process?
in thread What is YOUR Development Process?

i update everything together. i structure my svn repository like this:

/
-- lib
   -- modules
   -- shared template includes
-- app-1
   -- templates
   -- cgis
-- app-2
   -- templates
   -- cgis

i put modules and shared template includes (i use mason just as an example) in lib because very likely, different apps need to share functionalities and some general templates (e.g. templates to show currencies)

the benefit of this structure is that i have everything in one tree so i don't need to remember which module is needed by which cgi script with which version. the downside is that it takes a lot of space, but space is cheap nowadays.

Badai
  • Comment on Re^3: What is YOUR Development Process?