iamraymondchen
iamraymondchen

Reputation: 69

Creating miscroservice tar image for iOS EdgeEngine

I'm looking to deploy my microservice on my iOS app using the following func

public func deployMicroservice(edgeEngineAccessToken: String, config: MIMIKEdgeMobileClient.MIMIKMicroserviceDeploymentConfig, imageTarPath: String, completion: @escaping (MIMIKEdgeMobileClient.MIMIKMicroservice?) -> Void)

What steps should I take in creating this microservice tar image for imageTarPath?

Upvotes: 0

Views: 56

Answers (1)

Maz Mandi
Maz Mandi

Reputation: 161

All of the existing microservices that you can deploy on iOS reside at the link below.

https://github.com/edgeMicroservice

Most of the microservices already come packaged as .tar files so all you need to do is deploy and start them.

For "starter-microservice" you build & package it via npm. How you build your own microservices is completely up to you

Upvotes: 1

Related Questions