Skip to content

Instantly share code, notes, and snippets.

@juanra
juanra / c9-install-composer-grav
Created May 1, 2017 21:03
Shell script to install Grav CMS into a C9 IDE workspace
#!/bin/bash
# Script for installing Grav CMS into a c9 workspace
echo "Installing Composer into C9 workspace"
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('SHA384', 'composer-setup.php') === '669656bab3166a7aff8a7506b8cb2d1c292f042046c5a994c43155c0be6190fa0355160742ab2e1c88d40d5be660b410') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
echo "Setting Composer globally"
@juanra
juanra / install-gitflow-cloud9.sh
Created January 24, 2014 22:28
Script to install git-flow in Cloud9 IDE.
#!/bin/bash
# This script downloads and installs git-flow into Cloud9 workspace.
# It makes possible to use git-flow for high-level repository operations using Vincent Driessen's branching model.
# Create this file in a root of your workspace.
# Run in command line: chmod +x install-gitflow-cloud9.sh
# And: ./install-gitflow-cloud9.sh
# It will take some time to download and compile.