YouTubeSyncのサーバ用リポジトリです。
- Xcode Command line tools
- Homebrew
- rbenv
- Ruby 2.4.1
- Ruby on Rails 5.1.2
- bundler
- mysql2 0.4.8
- editorconfig plugin
AppStoreからXcodeをインストールし、以下のコマンドを実行する。
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew install rbenv ruby-build
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
source ~/.bash_profile
rbenv install 2.4.1
gem install rails -v 5.1.2
gem install bundler
brew install mysql
ここからエディタに合わせたものをインストールすること。
- 次のコマンドを実行する。
git clone [email protected]:cyder/SyncPod-server.git
cd SyncPod-server
- Gemライブラリをインストールする
bundle install --path=vendor/bundle
- MySqlを起動する
mysql.server start
- Databaseを作成する
rails db:create
rails db:migrate
rails db:seed
- サーバを起動する
rails server
その他は/docにまとまっています。