git

Herokuにgithub経由でアップ

heroku loginの前にssh-keygenでssh-keyを作成しておく $ heroku login Email: Password: Found the following SSH public keys: 1) 2) 3) . . which would you like to use with your heroku account? と聞かれるので、 Found the following SSH public key…

vagrantでUbuntuServer14.04を動かす~Ruby関連環境設定~

rbenv git clone https://github.com/sstephenson/rbenv.git ~/.rbenv echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile echo 'eval "$(rbenv init -)"' >> ~/.bash_profile exec $SHELL -l git clone https://github.com/sstephenson/ruby-…

vagrantでUbuntuServer14.04を動かす~Nginx,git,mysqlのインストール編~

Nginxインストール cd ~ #ホームディレクトリへ移動 Nginxの鍵をダウンロードし追加する - wget http://nginx.org/keys/nginx_signing.key - sudo apt-key add nginx_signing.key - /etc/apt/sources.list に以下の2行を追加する deb http://nginx.org/packa…