Install Radiant
Posted by Edmund Haselwanter on Wednesday, July 16, 2008
follow the tutorial from the radiant documentation
install the gem and issue
$ radiant --database=[database adapter] [path]
to create the basic radiant installation. and continue creating the databases
mysql -u <username> -p # enter password mysql> CREATE DATABASE `<DB_NAME>_test` ; mysql> CREATE DATABASE `<DB_NAME>_development` ; mysql> CREATE DATABASE `<DB_NAME>_production` ;
Edit the
config/database.yml to match your settingsand issue
rake production db:bootstrap

