== Guestbook A simple example of a guestbook application in Rails. Use at your own risk. == Documentation Documentation can be generated by running the 'rake appdoc' command to generate HTML documentation for the classes. == Usage Create databases for MySQL. Assuming you're using root with no password for your setup, this should work fine: mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 60 to server version: 4.1.12a-nt Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> create database guestbook_test; Query OK, 1 row affected (0.24 sec) mysql> create database guestbook_development; Query OK, 1 row affected (0.00 sec) mysql> create database guestbook_production; Query OK, 1 row affected (0.00 sec) mysql> exit; Next, start the webrick server ruby script/server Navigate to http://localhost:3000/guestbook/ to see the guestbook.