Skip to content

Instantly share code, notes, and snippets.

View daisuke-morita's full-sized avatar

Daisuke Morita daisuke-morita

View GitHub Profile
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Hello Cotoami!</title>
<link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">
@daisuke-morita
daisuke-morita / upgrade.sh
Created February 11, 2016 05:22
upgrade.sh - デプロイ処理の実際
#!/bin/bash
export AWS_DEFAULT_REGION="ap-northeast-1"
APP="example_app"
APP_HOME="/opt/${APP}"
DEPLOY_TO="${APP_HOME}/releases"
S3_FOLDER="s3://example-app-packages"
# Get the specified or latest version number
@daisuke-morita
daisuke-morita / example_app.conf
Created February 7, 2016 12:29
Phoenixアプリ用のUpstart設定
description "Example App"
setuid ubuntu
setgid ubuntu
start on runlevel [2345]
stop on runlevel [016]
expect stop
respawn
@daisuke-morita
daisuke-morita / main.yml
Created February 7, 2016 07:10
Phoenixアプリサーバーのプロビジョニング - ansible/roles/app/tasks/main.yml
---
- name: Download package
command: aws s3 cp "{{ package_url }}" /tmp/app.tar.gz
environment:
AWS_ACCESS_KEY_ID: "{{ lookup('env','AWS_ACCESS_KEY_ID') }}"
AWS_SECRET_ACCESS_KEY: "{{ lookup('env','AWS_SECRET_ACCESS_KEY') }}"
- name: Make app directory
file: state=directory path={{ item }}
with_items:
@daisuke-morita
daisuke-morita / deploy.rb
Created February 7, 2016 04:55
Capistranoデプロイタスク
require 'aws-sdk'
lock '3.4.0'
set :application, 'example_app'
set :pty, true
set :user, "ubuntu"
set :use_sudo, true
set :ssh_key, "~/.ssh/example_app.pem"
@daisuke-morita
daisuke-morita / deploy-policies.json
Created February 7, 2016 04:12
デプロイ用の IAM User
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "1",
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::example-app-packages/*"
]
@daisuke-morita
daisuke-morita / deploy-to-staging.sh
Created February 7, 2016 03:56
deploy-to-staging.sh - リリースパッケージをアプリケーションサーバーにホットデプロイする
#!/bin/bash
set -ex
export AWS_DEFAULT_REGION="ap-northeast-1"
SGID="sg-xxxxxxxx"
MYIP="`dig +short myip.opendns.com @resolver1.opendns.com`"
cd $(dirname $(readlink -f $0))
@daisuke-morita
daisuke-morita / build-release.sh
Created February 7, 2016 03:07
build-release.sh - リリースパッケージをビルドする
#!/bin/bash
set -ex
mix do deps.get, deps.compile, compile
node -v
npm install
export MIX_ENV="prod"
@daisuke-morita
daisuke-morita / get-prev-rel.sh
Created February 7, 2016 02:48
get-prev-rel.sh - 直前のバージョンを取得する
#!/bin/bash
export APP="example_app"
aws s3 cp s3://example-app-packages/latest.tar.gz /tmp/${APP}.tar.gz
mkdir -p rel/${APP} && rm -rf rel/${APP}/*
tar zxvf /tmp/${APP}.tar.gz -C rel/${APP}
@daisuke-morita
daisuke-morita / test.sh
Created February 7, 2016 02:11
Elixirのテスト実行
#!/bin/bash
export MIX_ENV="test"
mix do deps.get, deps.compile, compile, test