1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Rails初心者]コピペでwebアプリが作れる。魔法のコード。

Last updated at Posted at 2020-11-18

細かいことは抜きにこのコードを自分のターミナルで打ってみてください。

rails new testapp; cd testapp && rails g scaffold post title body && rails g scaffold comment content post:references && bundle && rails db:create && rails db:migrate &&  rails
 s

このコードだけでwebアプリを作ることができます。

用途としては、

  • 使ったことないgemのテストのためのアプリとして
  • Railsでどんなことができるのか初めの一歩としてとりあえず動かしてみたいとき

などです。

コードの詳細としては

rails new testapp -d postgresql
cd testapp
rails g scaffold post title:string body:string
rails g scaffold comment content:string post:references
bundle 
rails db:create
rails db:migrate
rails
 s

です。
それぞれの意味がわからない人は是非調べてみてください!

他にも便利で楽しいコードを発見したら投稿したいと思います。

1
2
2

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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?