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
=================== | |
Brightfab gist repo | |
=================== | |
This is the fabric code for managing Brightmd's developer automation. | |
It bootstraps all dependencies and code into the current directory, under Brightmd/ then moves itself into that directory. | |
**Note** It is not possible to create directories in a gist. |
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
#!/bin/bash | |
set -e | |
sudo apt-get install -y git make | |
git clone https://github.com/corydodt/Personal.git | |
cd Personal | |
make shell |
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
"use strict"; | |
var pizzaApp = angular.module("pizzaApp", []); | |
pizzaApp.controller('PizzaCtrl', function _a_PizzaCtrl($scope) { | |
$scope.ingredients = ['pepperoni', 'sausage', 'anchovies', 'olives', 'onions']; | |
$scope.addIngredient = function _a_addIngredient() { | |
if ($scope.form.newIngredient.length > 0) { | |
$scope.ingredients.push($scope.form.newIngredient); |
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
## nginx configuration | |
## Ref: https://github.com/kubernetes/ingress/blob/master/controllers/nginx/configuration.md | |
## | |
controller: | |
name: controller | |
image: | |
repository: gcr.io/google_containers/nginx-ingress-controller | |
tag: "0.9.0-beta.12" | |
config: |