if you are running gulp.vulcanize like in the 'serve:dist' task in your sample app, and also are looking to host the ./dist folder then heroku is NOT a good idea. H has no buildpack to accept a flat folder like the vulcainzed ./dist and to simply host it with nginx / apache.
buildpack list has nothing 4 polymer, although using a node wrapper appears to be an option with Heroku/polymer. IMO this is not the best because the node layer is extra cruft when trying to simply push that ./dist folder to the web.
There are hacks to make it work on H (links below) or by using the Heroku API to simply push a folder, but IMO you could do alot better.
I would look hard at alts like AWS or to github pages B4 heroku.
Note that i quickly tried github pages using the ./dist folder and using
var ghpages = require('gh-pages');
...
gulp.task('deploy', ['default'], function(cb) {
ghpages.publish(path.join(process.cwd(), 'dist'), cb);
});
on github and it FAILED due to some router issues with #! links. So i decided to just push an unvulcanized version to the web. ( not the best )
Be certain that you can host ./dist locally WITHOUT using the 'gulp.serve' task before deciding to push the ./dist folder somewhere on the web. You may see options for pushing 'gulp.serve' and npm with your project but it makes NO sense to me to include all that extra cruft when vulcanize is trying so hard to just produce that ./dist folder!
Be certain in stdout that the vulcanize task is actually finishing....
[15:59:59] Starting 'vulcanize'...
[16:00:00] 'vulcanize' all files 436.07 kB
[16:00:00] Finished 'vulcanize' after 1.14 s
Depending on how you extend the starter kit, 'vulcanize' can fail pretty silently so that you go on to other matters with hosting the ./dist folder without realizing that 'vulcanize' failed.
Is it possible to upload a simple html and javascript file structure to heroku?
https://www.npmjs.com/package/gulp-gh-pages
How to deploy node app that uses grunt to heroku
http://www.sitepoint.com/deploying-heroku-using-gulp-node-git/