Another great way to deploy your ember app is using www.pubstorm.com – here are the commands:
1 2 3 |
npm install -g pubstorm (use sudo if you get permission errors) storm signup (if you don't have an account) storm login (if you have an account already) |
In your ember app folder, run
1 |
storm init (enter dist for the path) |
Build your app with
1 |
ember build |
Deploy your app with
1 |
storm publish |
Visit your site at projectname.pubstorm.site e.g. http://helloworld.pubstorm.site/
That’s pretty damn cool. We have just deployed our ember app in seconds.
Also published on Medium.