Creating an ember/sailsjs project skeleton

Hi, I’m trying to create a project skeleton for and ember/sails JS app.

I have created a new project with both apps in one folder directory, they both working side by side now, however I want to configure the output of ember/build, to output into /assets, so the sailsjS app can server up the ember app. How can i configure it so when I type “ember build” it outputs to /assets instead of /dist?

To update on what I did… I ended up taking a different approach. I modifed the generated grunt file that game with the project to add an extra ‘shell’ task to execute ‘ember build’, and a ‘copy’ task that copied the dist directory into the .tmp directory of SailsJS project during the build pipeline.