markdown 轨のコードリーディング

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 轨のコードリーディング相关的知识,希望对你有一定的参考价值。

```
# railsのソースを取得
git clone https://github.com/rails/rails.git

# PostgreSQLのインストール
# bundle installで怒られるので先にインストールしておく(MySQLが入ったマシン
で試したのでMySQLもいるかも)
brew install postgresql

bundle install

# コードリーディングに使うテストプロジェクトを作成
bundle exec rails new ../CodeReading --dev

cd ../CodeReading
# Gemfileに下記gemを追加
# gem 'pry-rails'
# gem 'pry-doc'
# gem 'pry-byebug'
# gem 'byebug'
# gem 'rb-readline'

bundle install

# 下記のようなカーディナリティのモデルを作成
# orders *--* products 1--* tags
# orders *--1 clients
# orders 1--1 invoices
rails g model client name:string
rails g model product name:string
rails g model invoice amount:integer
rails g model tag name:string product:references
rails g model order note:string client:references invoice:references
rails g model order_detail quantity:integer order:references product:references
```

以上是关于markdown 轨のコードリーディング的主要内容,如果未能解决你的问题,请参考以下文章

text SSHのポートフォワーディング

scss ぐるぐる回るローディング

text 入力フォームのバインディング

python pandas + csvでエンコーディング指定

html PCコーディングスマホ时横幅指定

javascript 20180502ロードディング画面を2回目移行表示させない