Typo Install
I have just installed the Typo blogging system on a WinXP box (SP1). Since I could not find a walkthrough of the install process, I thought I would post my experience. A readme file comes with the Typo distribution and it contains all necessary information. Here's what I did:I downloaded the latest stable release and unzipped the file into a local directory. I then followed the instructions in the readme file (located in the root of the directory you unzipped to):
- Created Postgresql Typo database by executing
db/schema.psql.sql
. I copied the SQL statements into pgAdminIII and executed them from there.
- Updated config/database.yml to use adapter
'postgresql'
- enter name, username and password for the database you have just created for typo. Note that for this to work, you must have the postgresql library for Rail's ActiveRecord installed. This can be done through the RubyGems installer - see my post on Ruby on Rails install.
- Ran
'ruby script/server -e production'
, which started WEBbrick.
- Pointed browser to
http://localhost:3000
and commenced account signup.
- After account signup, configure blog using web administration interface at
http://localhost:3000/admin
Now I am up and running and almost everything is good. WEBrick - the web server that is bundled with {'Ruby', 'Rails', 'Ruby on Rails'} - dies on me a lot. The frequent crashes seems to occur whenever I submit a new request (by clicking a link in Typo or entering URL in browser), before a page has loaded completely.
If you enjoyed this post, make sure you subscribe to my RSS feed!