Using a .ember-cli
file is the way to go according to the ember-cli docs here.
I'm using nitrous.io - which is fantastic - however it doesn't allow port 4200 - and in any case I wanted the server to be on 3000.
Also, I noticed that the server was starting up and refreshing very slowly - issue seems to be with the live-reload-server - and again the default port.
So, my .ember-cli
config file now looks like this...
{
"port": 3000,
"live-reload-port": 4000
}
Everything seems ok with nitrous.io and most importantly my server load time is now what you would expect - also, live-reload works great.