Hey guys I watched the great screencast by Larry E. Masters about
"Using TortoiseSVN to Sync CakePHP applications
Using TortoiseSVN to Sync CakePHP applications"

=> http://cakephp.org/screencasts/view/2

------------------------------------------------------------------------------
PREAMBLE:
------------------------------------------------------------------------------
let's say we manage our production folder structure as follows:

/root
  |--/svn
  |    |--trunk
  |         |--/app
  |         |    /config
  |         |    /controllers
  |         |    /models
  |         |    /plugins
  |         |    /tmp
  |         |    /vendors
  |         |    /views
  |         |    index.php
  |         |
  |         |--/cake
  |         |    /config
  |         |    /docs
  |         |    /libs
  |         |    /scripts
  |         |    app_controller.php
  |         |    app_model.php
  |         |    basics.php
  |         |    bootstrap.php
  |         |    dispatcher.php
  |         |
  |         |--/vendors
  |
  |--/www
       |
       |--/webroot
             /css
             /files
             /img
             /js
             .htaccess
             css.php
             favicon.ico
             index.php


------------------------------------------------------------------------------
MY QUESTION
------------------------------------------------------------------------------
Just wondering if any of you manages live websites via svnsync (http://
svn.collab.net/repos/svn/trunk/notes/svnsync.txt) using this apache
rule (http://search.cpan.org/~jpeacock/SVN-Notify-Mirror-0.03603/lib/
SVN/Notify/Mirror.pm) to skip svn generated files into the repository.

------------------------------------------------------------------------------
# Disallow browsing of Subversion working copy
# administrative directories.
  <DirectoryMatch "^/.*/\.svn/">
   Order deny,allow
   Deny from all
  </DirectoryMatch>
------------------------------------------------------------------------------

Do you suggest this method to quickly sync your devapp and production-
app?

Dan

------------------------------------------------------------------------------------------------------------------
ARTICLES ABOUT THIS TOPIC:
------------------------------------------------------------------------------------------------------------------

=> http://www.usercore.com/category/subversion/
=> http://www.sitepoint.com/blogs/2006/02/07/using-svn-for-web-development/

------------------------------------------------------------------------------------------------------------------
ALTERNATIVE SOLUTIONS
------------------------------------------------------------------------------------------------------------------
-> PEAR installer (http://www.packtpub.com/PEAR-Installer/book)
-> RSYNC (http://samba.anu.edu.au/rsync/)


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to