Boston Python Workshop/Friday handout/OS X 10.6 or 10.5: Difference between revisions

Content added Content deleted
imported>Paulproteus
No edit summary
imported>Paulproteus
Line 108: Line 108:
If you have trouble installing, double-check that your Firefox version is at least 3.6.
If you have trouble installing, double-check that your Firefox version is at least 3.6.



== Verify your database is set up ==
* Open a new Terminal window.
* <code>cd ~/Desktop/ruby_on_rails/test_app</code>
* <code>rails generate scaffold user name:string email:string address:text active:boolean</code>
* <code>rake db:migrate</code>
* <code>rails server</code>
* Go to http://localhost:3000/users -> New user -> create a user to make sure we can save to db. (The window where you ran <code>rails server</code> will display debugging information as you do so.)
* In your Terminal window where you ran <code>rails server</code>, type control-c to kill the server.


== Verify git is working ==
== Verify git is working ==