To deploy an Ember application simply transfer the output from ember build to a web server. This can be done with standard Unix file transfer tools such as rsync
or scp
. There are also services that will let you deploy easily.
ember build
scp -r dist/* myserver.com:/var/www/public/
normally we would use ember build --environment=production
which does more to make your code ready for production (gzip and minify code).