Skip to content

Instantly share code, notes, and snippets.

View alexleventer's full-sized avatar
💭

Alex Leventer alexleventer

💭
View GitHub Profile
@alexleventer
alexleventer / gist:c0c1d513acd421863f86
Last active August 29, 2015 14:21
PHP CentOS Distelli Manifest Provision
<username>/PHPCentOSPSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: CentOS
Env:
- PORT: "8006"
PkgInclude:
@alexleventer
alexleventer / gist:a3ade0515844ed8f01f7
Last active August 29, 2015 14:21
PHP Ubuntu Distelli Manifest Provision
<username>/PHPUbuntuPSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: Ubuntu
Env:
- PORT: "8006"
PkgInclude:
@alexleventer
alexleventer / gist:e8b30abfd1fe550d2b42
Created May 14, 2015 19:33
Java Ubuntu Distelli Manifest
<username>/JavaUbuntuSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: Ubuntu
# Installed Packages:
# Java JRE >= 1.7 [sudo apt-get install default-jre]
#
# Set the JAVA_HOME (below) for your JRE install directory
#
@alexleventer
alexleventer / gist:b7dc7f3e784932528692
Last active August 29, 2015 14:21
Java CentOS Distelli Manifest
<username>/JavaCentOSSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: CentOS
# Installed Packages:
# Java JRE >= 1.7 [sudo yum install java]
#
# Set the JAVA_HOME (below) for your JRE install directory
#
@alexleventer
alexleventer / gist:96d66ce388f87742895b
Last active August 29, 2015 14:21
Python CentOS Distelli Manifest
<username>/PythonCentOSSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: CentOS7
# Installed Packages:
# Python >= 2.5 [sudo yum install python]
# Pip >= 1.4 (python-pip) [sudo rpm -iUvh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm]
# [sudo yum update]
# [sudo yum install python-pip]
@alexleventer
alexleventer / gist:f0f80f33667ba31c0799
Created May 14, 2015 19:30
Python Ubuntu Distelli Manifest
<username>/PythonUbuntuSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: Ubuntu
# Installed Packages:
# Python >= 2.5 [sudo apt-get update]
# [sudo apt-get install python]
# Pip >= 1.4 (python-pip) [sudo apt-get install python-pip]
# virtualenv >= 1.9 [sudo apt-get install python-virtualenv]
@alexleventer
alexleventer / gist:9202419b0f6260e4e496
Created May 14, 2015 19:29
Go Ubuntu Distelli Manifest
<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
@alexleventer
alexleventer / gist:608345562a8d535d0ee0
Last active August 29, 2015 14:21
Go CentOS Distelli Manifest
<username>/GoCentOSSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: CentOS7
# 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
@alexleventer
alexleventer / gist:90b86f56226b16f673ef
Last active August 29, 2015 14:21
Ruby CentOS Distelli Manifest
<username>/RubyCentOSSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: CentOS
#
Env:
- PORT: 8003
- STAGE: production
@alexleventer
alexleventer / gist:931d9bab08ecdb4ecc2e
Last active August 29, 2015 14:21
Ruby Ubuntu Distelli Manifest
<username>/RubyUbuntuSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: Ubuntu
#
Env:
- PORT: 8003
- STAGE: production