When getting an error 'git-ssh.sh': Permission denied
add set :tmp_dir, "/home/{username}/tmp"
to the deploy.rb file.
'pbcopy < ~/.ssh/id_rsa.pub'
vim authorized_hosts
// Social Network Colours | |
$network-colors: ( | |
twitter: #00ACED, | |
youtube: #CD201F, | |
pinterest: #CB2027, | |
github: #333333, | |
dribbble: #EA4C88, | |
instagram: #517FA4 | |
); |
# Namespaced to reduce conflict | |
namespace :mysite do | |
desc 'Make a production file' | |
task :production do | |
on roles(:app), in: :groups do | |
execute "touch #{release_path}/env_production" | |
end | |
end |
When getting an error 'git-ssh.sh': Permission denied
add set :tmp_dir, "/home/{username}/tmp"
to the deploy.rb file.
'pbcopy < ~/.ssh/id_rsa.pub'
vim authorized_hosts
meta(name="twitter:card", content="summary") | |
meta(name="twitter:site", content="@craigmdennis") | |
meta(name="twitter:title", content="{{title}}") | |
meta(name="twitter:description", content="{{description}}") | |
meta(name="twitter:img", content="http://craigmdennis.com/logo.png") | |
meta(name="twitter:url", content="{{url}}") |
.context__flourish { | |
ul { | |
list-style: disc; | |
margin-left: 1.5em; /* Left and right margins are allowed here */ | |
} | |
} |
$debug-rhythm: false; |
$debug-breakpoint: true; | |
$bp1: 'min-width: 20em'; // 320px | |
$bp2: 'min-width: 30em'; // 480px | |
$bp3: 'min-width: 37.5em'; // 600px | |
$bp4: 'min-width: 48em'; // 768px | |
$bp5: 'min-width: 56.25em'; // 900px | |
$bp6: 'min-width: 68.75em'; // 1100px | |
$bp7: 'min-width: 81.25em'; // 1300px |
// =================================================== | |
// Reset | |
// =================================================== | |
// Adapted from Normalize | |
// https://github.com/necolas/normalize.css/ | |
// and Eric Meyer's Reset | |
// http://meyerweb.com/eric/tools/css/reset/ | |
// =================================================== | |
// It's safe to use box-sizing |
<?php | |
add_action( 'admin_menu', 'remove_menus' ); | |
function remove_menus() { | |
global $menu; | |
global $submenu; | |
// echo '<pre>'; | |
// print_r($menu); |