I've been building a web app in Ember, and am ready to put it on a server for public use. I just want to make the /dist/ folder, which i will then manually upload to a server via FTP.
How do I build a dist for this in Ember? I can't figure out how to turn on minification and remove the tests files from the build.
I'm guessing it has something to do with my Brocfile.js, bower.json, package.json, environment.js or tester.json files, but I don't really know which one, or what that config would look like.
Bonus: I'd like to know how to turn disable/enable minification too, as I want to share my production build with a colleague to see.
It should be more that just "ember build --environment production". What files do I need to change to enable/disable minfication, to include tests etc? Or is that what "ember build --environment production" does?
Thanks!
ember build --environment=production
– Patsy Issa