Golang Deployment Process
We’re going to deploy a sample Golang server written in Gin - but that doesn’t mean you’re restricted to Gin. You’re free to use any Golang web framework. This app’s a very basic app with one endpoint - ‘/’ to demonstrate how you can push out a public-facing app on Porter Cloud with a public-facing domain and TLS. The idea here is to show you how a sample application can be quickly deployed on Porter Cloud, allowing you to then use the best practices for deploying your code. You can find the repository for this sample app here: https://github.com/porter-dev/golang-getting-started. Feel free to fork/clone it, or bring your own.Deploying Applications
Deploying web apps from a GitHub repository on Porter involves - broadly - the following steps:- Creating a new app on Porter where you specify the repository, the branch, any build settings, as well as what you’d like to run.
- Building your app and deploying it (automatically handled by Porter so you don’t have to worry about Continuous Integration and Continuous Deployment or your deployment pipeline in general).
Creating an App and Connecting Your GitHub Repository
On the Porter Cloud dashboard, select ‘Create a new application’, which opens the following screen:
If you signed up for Porter Cloud using an email address instead of a Github account, you can easily connect your Github account to Porter by clicking on the profile icon on the top right corner of the dashboard, selecting ‘Account settings’, and adding your Github account.
Configuring Build Settings
Porter has the ability to automatically detect what language your app is written in and select an appropriate buildpack that can be used to package your Golang application for eventual deployment automatically. Porter can also use an existing Dockerfile for your build - that’s what we’ll use here. Once you’ve selected the branch you wish to use, Porter will display the following screen:
Configure Services
At this point, taking a quick look at applications and services is a good idea. An application on Porter is a group of services where each service shares the same build and the same environment variables. If your app consists of a single repository with separate modules for, say, an API a frontend, and a background worker, then you’d deploy a single application on Porter with three separate services. Porter supports three kinds of services: ‘web’, ‘worker’, and ‘job’ services. Let’s add a single ‘web’ service for our app:
Configure Your Service
Now that we’ve defined a single web service, it’s time to tell Porter how it runs. That means specifying what command to run for this service, what CPU/RAM levels to allocate, and how it will be accessed publicly.


If your app listens on ‘localhost’ or ‘127.0.0.1’, Porter won’t be able to forward incoming connections and requests to your app. To that end, please ensure your app is configured to listen on ‘0.0.0.0’ instead.
Review and Merge Porter’s PR
Hitting ‘Deploy’ will show you the contents of a GitHub Action workflow that Porter would use to build and deploy your app:





Accessing Your App
Your app’s now live on Porter Cloud. The Porter-generated unique URL is now visible on the dashboard under your app’s name. Let’s test it:


- Adding your own domain.
- Adding environment variables and groups (environment groups are only available on Porter Standard).
- Scaling your app.
- Ensuring your app’s never offline.