Hi i have a ember application in locale that use mirage. My problem is how i deploy the application on the server?
I have installed apache2 and clone my appplication on the server. After i make a ember build -prod and copy the dist file in www/html/ folder of apache, is correct this method to work? A ember application and put the file of dist directory in the www/html/ folder?
@Alessio_Varalta Just include the build file (say app.js, app.css and other vendor files) which you get after running ember prod build, in whichever file you want to render in your project
Now I have another question…I have two application on the same server so i created in html/ two folder app1 and app2
so the url is
url/app1
url/app2
my new problem is that when i make ember deploy development app1 the application take the asset cs and js from url/asset and not from url/app1/asset so i how can i make this last operation!!!