Tag: Rails4/デモアプリ
bundle exec rails new ~/work/demo --skip-bundle
bundle exec rails generate scaffold book title:string author:string summary:text
bundle exec rake db:migrate RAILS_ENV=development
bundle exec rails s -e development
bundle exec rails new ~/work/demo --skip-bundle --database=mysql
-- mysql -uroot -pXXX mysql < create_user.sqlで実行 grant all privileges on *.* to testuser identified by ’testpasswd'; grant all privileges on *.* to testuser@localhost identified by ’testpasswd';