-
Notifications
You must be signed in to change notification settings - Fork 0
Serverside setup
uniom edited this page Jul 2, 2013
·
42 revisions
.bashrcの以下を追記
source "$HOME/.rvm/scripts/rvm"
以下を実行
$ source "$HOME/.rvm/scripts/rvm"
$ rvm get head
$ rvm reload
$ rvm install 1.9.3
$ git clone -depth 1 [email protected]:Araki/CouplingServer.git
$ cd CouplingServer
$ bundle install --path=vendor/bundle
$ /usr/local/mysql/support-files/mysql.server start
$ /usr/local/mysql/bin/mysql -u root
mysql> create database pairful_dev;
mysql> quit
$ bundle exec rake db:migrate
$ bundle exec rake db:seed
$ bundle exec rails server