Posts Tagged ‘capistrano’

5
Mar

Full Rails Stack Part Four: Capistrano, MySQL

   Posted by: Jeff Owens    in Rails

We completed our subversion setup in part three, now let's add Capistrano deployment to the mix. Let's go ahead and ssh into our server:

CODE:
  1. ssh -p 8888 deploy@your_linux_box.com

Add the following new directories to our server. This is where our staging and production factory websites will be deployed to:

CODE:
  1. sudo mkdir /var/www
  2. sudo mkdir /var/www/apps
  3. sudo chown -R deploy:deploy /var/www/apps

Read the rest of this entry »

Tags: , , ,