Deploy AngularJS app on tomcat

I created an AngularJS application with a yoman angular generator. Now I want to host it using Apache tomcat.

I already ran "grunt build" and had all my assets in the "dist" folder. Is there a way to create a .war file or can I just copy the files to a folder inside tomcat?

+7
angularjs tomcat yeoman yeoman-generator-angular
source share
1 answer

Just copy all your files to the project folder, for example. $ TOMCAT_PATH / WebApps / your-project root /

Hooray!!

+11
source share

All Articles