- Export out all your S3 data
- Source: http://docs.aws.amazon.com/cli/latest/reference/s3/sync.html
# sync from bucket to local
aws s3 sync <bucket> <target_folder> <options>
aws s3 sync s3://mybucket . --acl public-read
# sync from local to bucket# sync from bucket to local
aws s3 sync <bucket> <target_folder> <options>
aws s3 sync s3://mybucket . --acl public-read
# sync from local to bucketThis gem makes creating cron jobs very easy!
whenever -w to write out the crontabcrontab -l to see the list of cron jobs you haveset :output, {:standard => 'log/cron.log'} #logs to your log file to viewbootstrap/dist/css/bootstrap.css and bootstrap/dist/css/bootstrap.min.css to vendor/assets/stylesheetsbootstrap/dist/js/bootstrap.js and bootstrap/dist/js/bootstrap.min.js to vendor/assets/javascripts*= require bootstrap//= require bootstraphttp://10.0.2.2:3000 to access your Rails serverThis resolves the issues of writing files to NTFS disks on mac.
open /Volumes and you will be able to see your driveTip: To unmount the disk, type diskutil unmount /Volumes/DRIVENAME
# Gemfile
group :development do
gem 'guard', :require => false
gem 'guard-livereload', :require => false
gem 'rack-livereload'# commit something first
# tag a commit (will tag last commit)
git tag -a v1.0 -m 'An intelligent message'require 'mina/bundler'This allows you to access the development server of your app without starting rails server. This means you can access multiple development site at the same time. Useful if you have an API app and another app to work together with.
# install
curl get.pow.cx | sh