Muhammad
Muhammad

Reputation: 109

How do I deploy server-side Swift on google cloud platform?

Im interested in implementing server-side swift on Google Cloud using "Perfect". Though Im quite new to server side, some guidance in implementing this would be helpful !

Upvotes: 0

Views: 1120

Answers (1)

Jeffrey Rennie
Jeffrey Rennie

Reputation: 3443

Knowing nothing about Perfect, I read Perfect's github page and see that in runs on Linux. Therefore, I see three ways to run Perfect on Google Cloud Platform, in order from easiest to most complicated:

  1. On a Linux Virtual Machine in Google Compute Engine.
  2. Building a custom docker image and running it in the App Engine Flexible Environment.
  3. Building a custom docker image and running it in Container Engine.

If you're already familiar with Docker or Kubernetes, then options 2 or 3 may be easier for you.

Upvotes: 2

Related Questions