https://github.com/tunepolo/railstutorial
Ruby on Railsチュートリアルの学習記録
https://github.com/tunepolo/railstutorial
rails rails-tutorial ruby
Last synced: 5 months ago
JSON representation
Ruby on Railsチュートリアルの学習記録
- Host: GitHub
- URL: https://github.com/tunepolo/railstutorial
- Owner: tunepolo
- Archived: true
- Created: 2019-01-07T11:26:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T01:12:24.000Z (over 2 years ago)
- Last Synced: 2024-09-27T16:21:02.443Z (9 months ago)
- Topics: rails, rails-tutorial, ruby
- Language: Ruby
- Size: 798 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://circleci.com/gh/tunepolo/railstutorial)
# Ruby on Railsチュートリアルのサンプルアプリケーション
これは、次の教材で作られたサンプルアプリケーションです。
[*Ruby on Railsチュートリアル*](https://railstutorial.jp/)
[Michael Hartl](http://www.michaelhartl.com/)著## ライセンス
[Ruby on Railsチュートリアル](https://railstutorial.jp/)内にある
ソースコードはMITライセンスとBeewareライセンスのもとで公開されています。
詳細は[LICENSE.md](LICENSE.md)をご覧ください。## 使い方
このアプリケーションを動かす場合は、まずはリポジトリを手元にクローンしてください。
その後、次のコマンドで必要になるRubyGemsをインストールします。```
$ bundle install --without production
```その後、データベースへのマイグレーションを実行します。
```
$ rails db:migrate
```最後に、テストを実行してうまく動いているかどうか確認してください。
```
$ rails test
```テストが無事に通ったら、Railsサーバーを立ち上げる準備が整っているはずです。
```
$ rails server
```詳しくは、[*Ruby on Railsチュートリアル*](https://railstutorial.jp/)を参考にしてください。