This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# unicorn_rails -c /var/www/public/config/unicorn.rb -E production -D | |
rails_env = ENV['RAILS_ENV'] || 'production' | |
worker_processes 2 | |
APP_PATH = "/var/www/public" | |
working_directory APP_PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -u | |
set -e | |
# Example init script, this can be used with nginx, too, | |
# since nginx and unicorn accept the same signals | |
# Feel free to change any of the following variables for your app: | |
RUBY=ruby-1.9.3-p448 | |
APP_ROOT=/var/www/public | |
PID=$APP_ROOT/tmp/pids/unicorn.pid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.example-form { | |
.form__group { | |
@include columns(4, $nth-omega: 3n, $media: desk); | |
@include columns(6, $nth-omega: 2n, $media: lap); | |
@include columns(12, $media: palm); | |
} | |
} |