LoginSignup
0
0

More than 5 years have passed since last update.

rails new 'appName'

Last updated at Posted at 2017-02-25

cd ~/projects
rails new appName -B -C -T -d sqlite3

-B bundle installスキップ
-C ActiveCable関連ソースコードを生成しない
-T テスト関連ソースコードを生成しない
-d sqlite3 DBMSとしてSqlite3を選択

cd appName

/rails
-/app
    --/assets :(javascript,stylesheets,img)
        ---/images
        ---/javascripts
        ---/stylesheets
    --/controllers
        ---/application_controller.rb
    --/helpers
        ---/application_helper.rb
    --/mailers
    --/models
    --/views
        ---/layouts
            ----/application.html.erb
-/config
    --/environments
    --/initialisers
    --/locales
-/db
-/doc
-/lib
    --/assets
    --/tasks
-/log
-/public
-/script
-/test
-/tmp
-/vendor
    --/assets
    --/plugins
-/config.ru
-/Gemfile
-/Rakefile
-/README
0
0
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
0