Published March 5th, 2008
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:
PLAIN TEXT
CODE:
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:
PLAIN TEXT
CODE:
sudo mkdir /var/www
sudo mkdir [...]
Published March 4th, 2008
in Rails.
If you've finished part two let's continue. In this part of the series I'm going to assume you have a working installation of MySQL on your local client machine that we will only need for testing purposes. If you've got a Mac you might look at installing MacPorts and using it to install [...]
Published February 5th, 2008
in Rails.
We completed setting up ssh and ssh keys in part one, let's continue now with part two of installing a full Rails stack.
SSH into your server:
PLAIN TEXT
CODE:
ssh -p 8888 deploy@your_linux_box.com
By default, Debian and Ubuntu have five package repositories called main, restricted, universe, multiverse, and commercial. You will need the universe package repository. By default, [...]
Published February 4th, 2008
in Rails.
I enjoy coding websites. I like coming up with elegant and flexible solutions to problems. If you saw David Heinemeier Hanssons' early screen casts on web development with Ruby on Rails, you may have been as impressed as I was. Unfortunately, deployment of a website to a *nix server can be a [...]