Reputation: 63
I am aware of how to create a new service fabric mesh application using the service fabric mesh SDK and then publish the same to Service Fabric Mesh. My question is - I have an existing Web project created from Angular CLI, how do I containerize this and publish it to Azure service fabric mesh?
Upvotes: 1
Views: 253
Reputation: 156
First, if you are currently developing locally on an application by using 'ng serve' that would not work for a production ready solution. You would want to use a production ready web server for serving the project. The process would look like something like this(assuming you only need to serve your angular app and are not dealing with connections to a database or maintaining some state or information on a backend)
Upvotes: 3