Re: what do you use to deploy?

2009-07-13 Thread Sam Sherlock
Yes please Richard! That sounds streamlined & efficient.  also thanks for
pointing that out about the .git folder (though for me this returns missing
controller||404 but guess it best to not rely on that)
thx - S


2009/7/13 Richard 

> I use git. "git pull". I use an apache htaccess to prevent access to the
> .git folder.
>
> I'm now working on some automation, the idea being when I run this command:
>
> "cake deploy"
>
> the code unit tests are run and then deployed. I'll dump the code on github
> sometime this week for anyone who's interested.
>
>
> On Mon, Jul 13, 2009 at 10:50 AM, Bert Van den Brande wrote:
>
>>
>> Subversion is by far the easiest way to update imho, I'm not aware of
>> any issues regarding SVN and .htaccess
>>
>> On Sun, Jul 12, 2009 at 9:28 AM, nurvzy wrote:
>> >
>> > I use http://www.xp-dev.com (free private SVN service).  SVN works
>> > great for me.   I work in SVN locally or on dev server and when ready
>> > to deploy I just ssh to my public server and "svn update".  Pretty
>> > happy with it.
>> >
>> > On Jul 11, 2:20 pm, GravyFace  wrote:
>> >> rsync makes me feel funny where my bathing suit covers.
>> >>
>> >> On Sat, Jul 11, 2009 at 3:57 PM, nMac<
>> shosoieltiernodelage...@gmail.com> wrote:
>> >> > Since a few days ago I'm using sitecopy, a linux script that uploads
>> only
>> >> > the modified files since the last update.
>> >>
>> >> > You can add exclusions and many other options.
>> >>
>> >> > But works only in Linux!
>> >>
>> >> > On Sat, May 16, 2009 at 7:29 PM, majna  wrote:
>> >>
>> >> >> Check out fredistranohttp://code.google.com/p/fredistrano/
>> >>
>> >> >> SVN is compatible with all files...
>> >>
>> >> >> On May 16, 7:53 pm, adam  wrote:
>> >> >> > I currently use FileZilla and Windows Explorer.  My IDE of choice
>> is
>> >> >> > eclipse, but have never used any integrated features or plugins
>> for
>> >> >> > deployment/synchronizing localhost and webhost.
>> >>
>> >> >> > I use Dreamhost, and I know they offer SVN as a feature, but was
>> >> >> > scared away by SVN's incompatibility with .htaccess files.  But I
>> >> >> > guess I could create the repository, and then manually drop in
>> >> >> > the .htaccess files in their appropriate places, and then just use
>> SVN
>> >> >> > from then on.  But that's six .htaccess files and a lot of work.
>> >> >> > Cronjob for the .htaccess files?
>> >>
>> >> >> > Any advice or words of wisdom?
>> >> >> > Or at least share what tools you use to deploy!
>> >>
>> >> >> > Adam
>> > >
>> >
>>
>>
>>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: what do you use to deploy?

2009-07-13 Thread Richard
I use git. "git pull". I use an apache htaccess to prevent access to the
.git folder.

I'm now working on some automation, the idea being when I run this command:

"cake deploy"

the code unit tests are run and then deployed. I'll dump the code on github
sometime this week for anyone who's interested.

On Mon, Jul 13, 2009 at 10:50 AM, Bert Van den Brande wrote:

>
> Subversion is by far the easiest way to update imho, I'm not aware of
> any issues regarding SVN and .htaccess
>
> On Sun, Jul 12, 2009 at 9:28 AM, nurvzy wrote:
> >
> > I use http://www.xp-dev.com (free private SVN service).  SVN works
> > great for me.   I work in SVN locally or on dev server and when ready
> > to deploy I just ssh to my public server and "svn update".  Pretty
> > happy with it.
> >
> > On Jul 11, 2:20 pm, GravyFace  wrote:
> >> rsync makes me feel funny where my bathing suit covers.
> >>
> >> On Sat, Jul 11, 2009 at 3:57 PM, nMac
> wrote:
> >> > Since a few days ago I'm using sitecopy, a linux script that uploads
> only
> >> > the modified files since the last update.
> >>
> >> > You can add exclusions and many other options.
> >>
> >> > But works only in Linux!
> >>
> >> > On Sat, May 16, 2009 at 7:29 PM, majna  wrote:
> >>
> >> >> Check out fredistranohttp://code.google.com/p/fredistrano/
> >>
> >> >> SVN is compatible with all files...
> >>
> >> >> On May 16, 7:53 pm, adam  wrote:
> >> >> > I currently use FileZilla and Windows Explorer.  My IDE of choice
> is
> >> >> > eclipse, but have never used any integrated features or plugins for
> >> >> > deployment/synchronizing localhost and webhost.
> >>
> >> >> > I use Dreamhost, and I know they offer SVN as a feature, but was
> >> >> > scared away by SVN's incompatibility with .htaccess files.  But I
> >> >> > guess I could create the repository, and then manually drop in
> >> >> > the .htaccess files in their appropriate places, and then just use
> SVN
> >> >> > from then on.  But that's six .htaccess files and a lot of work.
> >> >> > Cronjob for the .htaccess files?
> >>
> >> >> > Any advice or words of wisdom?
> >> >> > Or at least share what tools you use to deploy!
> >>
> >> >> > Adam
> > >
> >
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: what do you use to deploy?

2009-07-13 Thread Bert Van den Brande

Subversion is by far the easiest way to update imho, I'm not aware of
any issues regarding SVN and .htaccess

On Sun, Jul 12, 2009 at 9:28 AM, nurvzy wrote:
>
> I use http://www.xp-dev.com (free private SVN service).  SVN works
> great for me.   I work in SVN locally or on dev server and when ready
> to deploy I just ssh to my public server and "svn update".  Pretty
> happy with it.
>
> On Jul 11, 2:20 pm, GravyFace  wrote:
>> rsync makes me feel funny where my bathing suit covers.
>>
>> On Sat, Jul 11, 2009 at 3:57 PM, nMac 
>> wrote:
>> > Since a few days ago I'm using sitecopy, a linux script that uploads only
>> > the modified files since the last update.
>>
>> > You can add exclusions and many other options.
>>
>> > But works only in Linux!
>>
>> > On Sat, May 16, 2009 at 7:29 PM, majna  wrote:
>>
>> >> Check out fredistranohttp://code.google.com/p/fredistrano/
>>
>> >> SVN is compatible with all files...
>>
>> >> On May 16, 7:53 pm, adam  wrote:
>> >> > I currently use FileZilla and Windows Explorer.  My IDE of choice is
>> >> > eclipse, but have never used any integrated features or plugins for
>> >> > deployment/synchronizing localhost and webhost.
>>
>> >> > I use Dreamhost, and I know they offer SVN as a feature, but was
>> >> > scared away by SVN's incompatibility with .htaccess files.  But I
>> >> > guess I could create the repository, and then manually drop in
>> >> > the .htaccess files in their appropriate places, and then just use SVN
>> >> > from then on.  But that's six .htaccess files and a lot of work.
>> >> > Cronjob for the .htaccess files?
>>
>> >> > Any advice or words of wisdom?
>> >> > Or at least share what tools you use to deploy!
>>
>> >> > Adam
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: what do you use to deploy?

2009-07-12 Thread nurvzy

I use http://www.xp-dev.com (free private SVN service).  SVN works
great for me.   I work in SVN locally or on dev server and when ready
to deploy I just ssh to my public server and "svn update".  Pretty
happy with it.

On Jul 11, 2:20 pm, GravyFace  wrote:
> rsync makes me feel funny where my bathing suit covers.
>
> On Sat, Jul 11, 2009 at 3:57 PM, nMac 
> wrote:
> > Since a few days ago I'm using sitecopy, a linux script that uploads only
> > the modified files since the last update.
>
> > You can add exclusions and many other options.
>
> > But works only in Linux!
>
> > On Sat, May 16, 2009 at 7:29 PM, majna  wrote:
>
> >> Check out fredistranohttp://code.google.com/p/fredistrano/
>
> >> SVN is compatible with all files...
>
> >> On May 16, 7:53 pm, adam  wrote:
> >> > I currently use FileZilla and Windows Explorer.  My IDE of choice is
> >> > eclipse, but have never used any integrated features or plugins for
> >> > deployment/synchronizing localhost and webhost.
>
> >> > I use Dreamhost, and I know they offer SVN as a feature, but was
> >> > scared away by SVN's incompatibility with .htaccess files.  But I
> >> > guess I could create the repository, and then manually drop in
> >> > the .htaccess files in their appropriate places, and then just use SVN
> >> > from then on.  But that's six .htaccess files and a lot of work.
> >> > Cronjob for the .htaccess files?
>
> >> > Any advice or words of wisdom?
> >> > Or at least share what tools you use to deploy!
>
> >> > Adam
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: what do you use to deploy?

2009-07-11 Thread GravyFace

rsync makes me feel funny where my bathing suit covers.

On Sat, Jul 11, 2009 at 3:57 PM, nMac wrote:
> Since a few days ago I'm using sitecopy, a linux script that uploads only
> the modified files since the last update.
>
> You can add exclusions and many other options.
>
> But works only in Linux!
>
>
>
>
> On Sat, May 16, 2009 at 7:29 PM, majna  wrote:
>>
>> Check out fredistrano http://code.google.com/p/fredistrano/
>>
>> SVN is compatible with all files...
>>
>> On May 16, 7:53 pm, adam  wrote:
>> > I currently use FileZilla and Windows Explorer.  My IDE of choice is
>> > eclipse, but have never used any integrated features or plugins for
>> > deployment/synchronizing localhost and webhost.
>> >
>> > I use Dreamhost, and I know they offer SVN as a feature, but was
>> > scared away by SVN's incompatibility with .htaccess files.  But I
>> > guess I could create the repository, and then manually drop in
>> > the .htaccess files in their appropriate places, and then just use SVN
>> > from then on.  But that's six .htaccess files and a lot of work.
>> > Cronjob for the .htaccess files?
>> >
>> > Any advice or words of wisdom?
>> > Or at least share what tools you use to deploy!
>> >
>> > Adam
>>
>
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: what do you use to deploy?

2009-07-11 Thread nMac
Since a few days ago I'm using sitecopy, a linux script that uploads only
the modified files since the last update.

You can add exclusions and many other options.

But works only in Linux!




On Sat, May 16, 2009 at 7:29 PM, majna  wrote:

>
> Check out fredistrano http://code.google.com/p/fredistrano/
>
> SVN is compatible with all files...
>
> On May 16, 7:53 pm, adam  wrote:
> > I currently use FileZilla and Windows Explorer.  My IDE of choice is
> > eclipse, but have never used any integrated features or plugins for
> > deployment/synchronizing localhost and webhost.
> >
> > I use Dreamhost, and I know they offer SVN as a feature, but was
> > scared away by SVN's incompatibility with .htaccess files.  But I
> > guess I could create the repository, and then manually drop in
> > the .htaccess files in their appropriate places, and then just use SVN
> > from then on.  But that's six .htaccess files and a lot of work.
> > Cronjob for the .htaccess files?
> >
> > Any advice or words of wisdom?
> > Or at least share what tools you use to deploy!
> >
> > Adam
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



Re: what do you use to deploy?

2009-05-16 Thread majna

Check out fredistrano http://code.google.com/p/fredistrano/

SVN is compatible with all files...

On May 16, 7:53 pm, adam  wrote:
> I currently use FileZilla and Windows Explorer.  My IDE of choice is
> eclipse, but have never used any integrated features or plugins for
> deployment/synchronizing localhost and webhost.
>
> I use Dreamhost, and I know they offer SVN as a feature, but was
> scared away by SVN's incompatibility with .htaccess files.  But I
> guess I could create the repository, and then manually drop in
> the .htaccess files in their appropriate places, and then just use SVN
> from then on.  But that's six .htaccess files and a lot of work.
> Cronjob for the .htaccess files?
>
> Any advice or words of wisdom?
> Or at least share what tools you use to deploy!
>
> Adam
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---



what do you use to deploy?

2009-05-16 Thread adam

I currently use FileZilla and Windows Explorer.  My IDE of choice is
eclipse, but have never used any integrated features or plugins for
deployment/synchronizing localhost and webhost.

I use Dreamhost, and I know they offer SVN as a feature, but was
scared away by SVN's incompatibility with .htaccess files.  But I
guess I could create the repository, and then manually drop in
the .htaccess files in their appropriate places, and then just use SVN
from then on.  But that's six .htaccess files and a lot of work.
Cronjob for the .htaccess files?

Any advice or words of wisdom?
Or at least share what tools you use to deploy!

Adam
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~--~~~~--~~--~--~---