Skip to content

Instantly share code, notes, and snippets.

View alexleventer's full-sized avatar
💭

Alex Leventer alexleventer

💭
View GitHub Profile
@alexleventer
alexleventer / gist:8503d44f7bd8b403a25a
Last active August 29, 2015 14:21
PHP Ubuntu Distelli Manifest
<username>/PHPUbuntuSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: Ubuntu
# Installed Packages:
# php >= 5.0 [sudo apt-get install php5-cli]
#
Env:
@alexleventer
alexleventer / gist:9d7d8def47c1e4599d77
Created May 14, 2015 19:15
PHP CentOS Distelli Manifest
<username>/PHPCentOSSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: CentOS
# Installed Packages:
# php >= 5.0 [sudo yum install php]
#
Env:
@alexleventer
alexleventer / gist:f57a75509b5fe3c8c171
Last active August 29, 2015 14:21
NodeJS Ubuntu Distelli Manifest
<username>/NodeUbuntuSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: Ubuntu
# Installed Packages:
# nodejs >= 0.9 [sudo apt-get install nodejs]
# npm >= 1.1 [sudo apt-get install npm]
#
@alexleventer
alexleventer / gist:07346f31381222d5c49d
Last active August 29, 2015 14:21
NodeJS Centos Distelli Manifest
<username>/NodeCentOSSimpleApp:
# This Basic Distelli Manifest assumes the following
# has been provisioned on the destination deploy server:
#
# OS: Ubuntu
# Installed Packages:
# nodejs >= 0.9 [sudo yum install epel-release]
# [sudo yum install nodejs]
# npm >= 1.1 [sudo yum install npm]
#
@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
@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: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: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: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: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]