- I'm going to assume here that you have an ember application ready that you want to deploy.
- Install Generator Heroku using the steps there, and don't forget to add the block of code to your
gruntfile.js
. You should find the copy tag already there, just append to it - The run
grunt build command
to generate the/dist
folder. That will complie everything and generate your web-app - If you want you can test it using
grunt server:dist
- Now go to
/dist
folder - Create a heroku app
heroku create
- Commit everything in the dist folder (Don't go up to your root direcotry, you want to commit update to heroku) I used github to add local repo and manage everything from there.
- Finally run
git push heroku master
and you're done.
Last active
December 18, 2015 14:48
-
-
Save seifsallam/5799461 to your computer and use it in GitHub Desktop.
Deploying ember on heroku using yeoman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment