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 | |
JQ="jq --raw-output --exit-status" | |
if [ -x "$(command -v kustomize)" ]; then | |
KUSTOMIZE="kustomize build" | |
else | |
KUSTOMIZE="kubectl kustomize" |
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
apiVersion: apiextensions.k8s.io/v1beta1 | |
kind: CustomResourceDefinition | |
metadata: | |
name: managedcertificates.networking.gke.io | |
spec: | |
group: networking.gke.io | |
names: | |
kind: ManagedCertificate | |
plural: managedcertificates | |
shortNames: |
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
/* @flow */ | |
import { | |
forOwn, | |
size, | |
get, | |
transform, | |
noop, | |
} from 'lodash'; |
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
/* @flow */ | |
import React, { type Element } from 'react'; | |
import Relay from 'react-relay/classic'; | |
class CreateListMutation extends Relay.Mutation { | |
static fragments = { | |
viewer: () => Relay.QL` | |
fragment on User { | |
id |
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 | |
JQ="jq --raw-output --exit-status" | |
# @env region | |
# @env task_family | |
# @returns via stderr | |
locate-task() { |
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 | |
JQ="jq --raw-output --exit-status" | |
escape-json() { | |
python -c "import sys; import json; sys.stdout.write(json.dumps(sys.stdin.read().strip())[1:-1])" | |
} |
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
var through = require('through2'); | |
var setup = function(b, cb) { | |
b.on('reset', cb); | |
cb(); | |
}; | |
module.exports = function offsetify(b, externalBundles) { | |
setup(b, function() { | |
b.pipeline.get('sort').push(through.obj(function(row, enc, next) { |
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
var Liftoff = require('liftoff'); | |
var argv = require('minimist')(process.argv.slice(2)); | |
var invoke = function(env) { | |
console.log('modulePath: %j', env.modulePath); | |
console.log('configBase: %j', env.configBase); | |
console.log('cwd: %j', env.cwd); | |
}; | |
var liftoff = new Liftoff({ |
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
DocumentRoot "." | |
ServerName localhost | |
ErrorLog "apache_error_log" | |
LogLevel warn | |
LoadModule authz_host_module /usr/libexec/apache2/mod_authz_host.so | |
LoadModule auth_basic_module /usr/libexec/apache2/mod_auth_basic.so | |
LoadModule auth_digest_module /usr/libexec/apache2/mod_auth_digest.so | |
LoadModule deflate_module /usr/libexec/apache2/mod_deflate.so | |
LoadModule log_config_module /usr/libexec/apache2/mod_log_config.so |
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
{ | |
"name": "foursquare", | |
"version": "0.1.0", | |
"description": "", | |
"main": "server.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"start": "node server.js" | |
}, | |
"author": "Whitney Young", |
NewerOlder