[READ-ONLY] Mirror of https://github.com/shuuji3/rails-tutorial-sample-app.
0

Configure Feed

Select the types of activity you want to include in your feed.

Ruby 70.9%
HTML 21.6%
JavaScript 3.8%
CSS 2.3%
CoffeeScript 0.7%
SCSS 0.6%
Other 0.1%
23 1 0

Clone this repository

https://git.vm.fail/shuuji3.xyz/rails-tutorial-sample-app https://git.vm.fail/did:plc:r4vtgtlfohxb34hhv27kmiyi
ssh://git@knot1.tangled.sh:2222/shuuji3.xyz/rails-tutorial-sample-app ssh://git@knot1.tangled.sh:2222/did:plc:r4vtgtlfohxb34hhv27kmiyi

For self-hosted knots, clone URLs may differ based on your setup.


README.md

Ruby on Rails チュートリアルのサンプルアプリケーション#

これは、次の教材で作られたサンプルアプリケーションです。
Ruby on Rails チュートリアル Michael Hartl

ライセンス#

Ruby on Rails チュートリアル内にある ソースコードはMITライセンスとBeerwareライセンスのもとで公開されています。 詳細は LICENSE.md をご覧ください。

使い方#

このアプリケーションを動かす場合は、まずはリポジトリを手元にクローンしてください。 その後、次のコマンドで必要になる RubyGems をインストールします。

$ bundle install --without production

その後、データベースへのマイグレーションを実行します。

$ rails db:migrate

最後に、テストを実行してうまく動いているかどうか確認してください。

$ rails test

テストが無事に通ったら、Railsサーバーを立ち上げる準備が整っているはずです。

$ rails server

詳しくは、Ruby on Rails チュートリアル を参考にしてください。