CRUD - Sinatra

フォルダ構成

ディレクトリ構成

  • project
    • .bundle
      • config
    • db
      • database.yml
    • vendor
      • ... 中略 ...
    • views
      • create.erb
      • index.erb
    • app.rb
    • config.ru
    • Gemfile
    • Gemfile.lock

ファイルの内容

db/database.yml

development:
  adapter: mysql2
  database: sample
  host: localhost
  username: root
  password: password
  encoding: utf8
  ssl_mode: disabled

test:
  adapter: mysql2
  database: sample
  host: localhost
  username: root
  password: password
  encoding: utf8
  ssl_mode: disabled

production:
  adapter: mysql2
  database: sample
  host: localhost
  username: root
  password: password
  encoding: utf8
  ssl_mode: disabled