LoginSignup
0
1

More than 5 years have passed since last update.

NetBeans に Ruby on Rails5を対応させる

Posted at

NetBeansはプロジェクトではなくウィンドウからファイルを選択してファイルで開いて作業していきます。
作成したRailsのアプリからプロジェクトを作成すると、NetBeansでdatabase.ymlが勝手に書き換えられてしまうので、
以下のようにdatabase.ymlを書き直します。

database.yml

# SQLite version 3.x
#   gem install sqlite3
#
#   Ensure the SQLite 3 gem is defined in your Gemfile
#   gem 'sqlite3'
#
default: &default
  adapter: sqlite3
  pool: 5
  timeout: 5000

development:
  <<: *default
  database: db/development.sqlite3

test:
  <<: *default
  database: db/test.sqlite3

production:
  <<: *default
  database: db/production.sqlite3

そのあとで、
$ rails s

でサーバーに接続したり
$ bundle exec rails db:migrate

でマイグレーションして
$ bundle exec rails dbconsole

するとsqliteに接続できました

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1