Created
May 14, 2015 19:29
-
-
Save alexleventer/9202419b0f6260e4e496 to your computer and use it in GitHub Desktop.
Go Ubuntu Distelli Manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<username>/GoUbuntuSimpleApp: | |
# This Basic Distelli Manifest assumes the following | |
# has been provisioned on the destination deploy server: | |
# | |
# OS: Ubuntu | |
# Installed Packages: | |
# | |
# This application must be built with GO before deploying | |
# It must be built on the same architecture (32bit | 64bit) | |
# as the destination server | |
# | |
# go build -o bin/server src/server.go | |
# | |
Env: | |
- PORT: "8002" | |
Exec: | |
- exec ./bin/server $PORT | |
PkgInclude: | |
- bin/server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment