Skip to content

mangar/aws_deploy

Repository files navigation

AwsDeploy - 0.3.1.1

Gem Version

Push your app from staging to production server using S3 as a bridge

Scheme

Scheme

Install

Install the gem using the bundle....

gem 'aws_deploy'

...and then:

bundle install
rake aws:setup

First access

Run your site rails server and open the URL on your browser: http://localhost:3000/aws_deploy

Initial Setup

Generate the basic setup by firing on command line:

rake aws:setup

Generated content:

  • config/aws_deploy.yml
  • script/deploy.rb
  • script/production/cron_check_updates.rb
  • script/production/deploy.sh
  • script/lib/deploy/aws_send.rb
  • script/lib/deploy/git_version_tag.rb

Configuration

aws_deploy.yml

The value of the fields aws_access_key_id and aws_secret_access_key can be the real value or the reference to the ENV variable.

The file_pattern will be added the environment and .zip or .md5. Ex.: file_pattern-test.zip and file_pattern-test.md5 for testing environment file_pattern-prod.zip and file_pattern-prod.md5 for production environment

development:
  project_name: "THE NAME OF YOUR PROJECT HERE"
  aws_bucket: "YOUR_BUCKET_ON_S3"
  aws_access_key_id: "YOUR_ACCESS_KEY or ENV['YOUR_KEY_EXPORTED']"
  aws_secret_access_key: "YOUR_SECRET_ACCESS_KEY or ENV['YOUR_KEY_EXPORTED']"
  file_pattern: FILE_NAME
  pushbullet:
    api_key: PUSHBULLET_APIKEY|DeviceName|Identified PUSHBULLET_APIKEY|DeviceName|Identified

staging: 
  project_name: "THE NAME OF YOUR PROJECT HERE"
  aws_bucket: "YOUR_BUCKET_ON_S3"
  aws_access_key_id: "YOUR_ACCESS_KEY or ENV['YOUR_KEY_EXPORTED']"
  aws_secret_access_key: "YOUR_SECRET_ACCESS_KEY or ENV['YOUR_KEY_EXPORTED']"
  file_pattern: FILE_NAME
  pushbullet:
    api_key: PUSHBULLET_APIKEY|DeviceName|Identified PUSHBULLET_APIKEY|DeviceName|Identified

Pushbullet integration

Every publish on all environment the API keys informed on aws_deploy.yml file will be notified. Just add the API Key generated on your account setting.

You can inform more than one, just add a space between each key.

Format:

api_key|DEVICE NAME|Identification Name

Where:

  1. api_key is your API Key generated on Pushbullet website (menu Account Settings)
  2. DEVICE NAME the device name listed in your Device and Friends - logged in area
  3. Identification Name Just an identification for that device, for instance: the owners name...

Sample:

v1Y50OAUUEcDZKiVUtbiivJJ18HPatwazWujzCvGXFPuS|Chrome|My Computer at Company

TODO

  • Show the version of the GEM (aws_deploy screen or specific URL)
  • Open field for environments
  • Send email to responsibles to approve the deploy on environments
    • server side development required
  • Run rake on deployment process

License

Copyright 2013 Marcio Mangar - http://about.me/mangar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.