Install

1. Install Ruby One Click installer. Using 1.8.2-15 Windows.
1. Unpack Typo anywhere. Using typo-2.6.0.zip.
example F:\appn\typo
1. Install PostgreSQL. Using 8.1.2 Windows.
example F:\app\PostgreSQL\8.1\bin
1. Open a Command window (Windows key R cmd enter)
1. gem update
1. gem install rails --include-dependencies *--version '1.0.0*' (Typo-2.6.0 is not yet ready for Rails 1.1)
1. gem install rake --include-dependencies
1. gem install postgres-pr
1. (or..) gem install --local ""ruby-postgres-0.7.1.2005.12.21-mswin32.gem"":http://www.postgresql.jp/interfaces/ruby/
1. set PATH=%PATH%;f:\app\PostgreSQL\8.1\bin
1. cd f:\appn\typo
1. createuser typoadmin -U postgres --pwprompt --no-superuser --createdb --no-createrole
1. createdb typodb -U typoadmin
1. (1) psql -d typodb -U typoadmin -f F:\appn\typo\db\schema.psql.sql
1. (2) edit config\database.yaml
login: &login
  adapter: postgresql
  host: localhost
  username: typoadmin
  password: _password_

development:
  database: typodb_dev
  <<: *login

test:
  database: typodb_tests
  <<: *login

production:
  database: typodb
  <<: *login

1. (3) ruby script/server -e production
1. (4) Open web browser to http://localhost:3000 , which should switch to the url http://localhost:3000/accounts/signup
1. Begin your wonderful exploration of Typo!

Also available in: HTML TXT