This file contains 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
/** | |
* A component to wrap/render backbone views. It will instantiate the backbone | |
* view with options as the main parameters. | |
* | |
* Usage: | |
* ``` | |
* import AppSettings from 'modules/app-settings'; | |
* | |
* const options = {}; | |
* |
This file contains 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
# box:... | |
# services: | |
# - ... | |
build: | |
steps: | |
- install-packages: | |
packages: xvfb firefox | |
- script: | |
name: Enable virtual display | |
code: |- |
This file contains 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
box: ruby:2.2.3 | |
build: | |
steps: | |
# uncomment if you use box: ruby:2.2.3-slim | |
# - script: | |
# name: install deps | |
# code: | | |
# apt-get update | |
# apt-get install -y wget libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev build-essential chrpath libssl-dev libxft-dev |
This file contains 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
box: tcnksm/gox:1.4.2 | |
build: | |
steps: | |
- install-packages: | |
packages: openssh-client | |
- termie/glide-build: | |
build: false |
This file contains 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
box: nodejs | |
build: | |
steps: | |
# Correct way of indenting | |
- script: | |
name: works | |
code: | | |
echo "more indentation" |
This file contains 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
box: google/golang | |
dev: | |
steps: | |
- script: | |
name: build libstatgrab | |
code: | | |
curl -o libstatgrab-0.91.tar.gz http://www.mirrorservice.org/pub/i-scream/libstatgrab/libstatgrab-0.91.tar.gz | |
tar zxf libstatgrab-0.91.tar.gz | |
cd libstatgrab-0.91 | |
./configure --prefix=/usr |
This file contains 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
box: google/golang | |
dev: | |
steps: | |
- script: | |
name: build libstatgrab | |
code: | | |
curl -o libstatgrab-0.91.tar.gz http://www.mirrorservice.org/pub/i-scream/libstatgrab/libstatgrab-0.91.tar.gz | |
tar zxf libstatgrab-0.91.tar.gz | |
cd libstatgrab-0.91 | |
./configure --prefix=/usr |
This file contains 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
box: | |
id: ubuntu:trusty | |
build: | |
steps: | |
- install-packages: | |
packages: python python3 python-pip | |
- script: | |
name: python | |
code: | | |
python --version |
This file contains 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
box: wercker/python | |
services: | |
- wercker/redis | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
# A step that sets up the python virtual environment | |
- virtualenv: | |
name: setup virtual environment |
This file contains 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
box: wercker/php | |
services: | |
- wercker/postgresql | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
- install-packages: | |
name: install postgres extension | |
packages: "php5-pgsql" |
NewerOlder