GitHub Readme.md
npm install
gulp
if a gulpfile is present and was not already installed by previous passbower
if a bowerfile is present and was not already installed by previous passgrunt
if a gruntfile is present and was not already installed by previous passbundle
bower install
bundle install
bundle exec compass compile
gulp heroku:$NODE_ENV
(by default, it expands to heroku:production
)grunt heroku:$NODE_ENV
Currently we support private repos for bower, for GitHub, by leveraging the "shorthand syntax". Follow this guide:
.bowerrc
file, adding this line: "shorthand-resolver": "git@github.com:{{owner}}/{{package}}.git"
. This tells bower to normally access GitHub using SSH, so that you have access to your private repos.GITHUB_AUTH_TOKEN
.The buildpack will then automatically instruct bower to access your repos through the token instead of using SSH (for which it wouldn't have access).
heroku plugins:install https://github.com/heroku/heroku-repo.git; heroku repo:purge_cache -a appname
Copy the snippet above into CLI.