The missing Weblog Engine
Typo is the most powerful and used Weblog engine using the Ruby on Rails framework.
It is also the easiest to install and deploy:
$ gem install typo $ typo install some/path
Using Typo
Typo daily use is made easier thanks to a great list of templates. Download one at Typogarden, or start from an existing one to create your own.
Typo also comes with a great plugins API. Visit our official plugins repository
More on installing Typo
By default Typo will install itself using MySQL, but we support more database engines
Installing Typo without root access
If you don't have root access to your server, you can still install Typo using our great installer.
$ export GEM_PATH=~/gems $ gem install -i ~/gems typo $ ~/gems/bin/typo install /some/path
Installing Typo for MySQL
$ typo install some/path db_user=my_app db_name=my_app db_host=localhost db_password=password
Installing Typo for PGSQL
$ typo install some/path database=postgresql db_user=my_app db_name=my_app db_host=localhost db_password=password
Installing Typo for SQLLite
$ typo install some/path database=sqlite