Setting up Typo on a Site5 server 2750
First I will say that this might be out of date before anyone reads it but I thought I would atleast put it up and if it helps great.
1. Check Out
At the users home directory checkout the subversion (svn) repository from the typosphere.org site. The last parameter is the directory that will be created, you can change this as you wish.
svn checkout http://svn.typosphere.org/typo/trunk typo
2. Config
Goto my.site5.com and setup the database. The database will endup to be 'username'name Create the user for the database, same applies 'username'name (site5 sucks like that). Now you have to grant permissions for that user on the created database in the site5 web gui. Edit the database config file to contain the users and databases you created.
cd typo
cp database.yml.example database.yml
vi database.yml
3. Populate Database
The following command will connect to the production database and update the tables to contain all the typo stuff
rake db:migrate RAILS_ENV=production
4. Wrap Up
Uncomment the line following line from config/environment.rb
ENV['RAILS_ENV'] = 'production'
Create the symbolic link to your typo instance.
ln -s ~/typo/public ~/public_html
5. Finish
Goto the url of your website and it will ask you to sign up, and you are done