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 API_KEY = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; | |
var drip_base_url = 'https://api.getdrip.com/v2/xxxxxxx/' | |
var drip_account_id = ‘xxxxxxxxxx'; | |
/** | |
* Uses the Drip API to record event | |
* https://www.getdrip.com/docs/rest-api#events | |
*/ | |
function recordEvent(fn, ln, em, yr){ | |
var payload = { |
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/sh | |
node MeteorApp/hooks/post-commit-version | |
RETVAL=$? | |
if [ $RETVAL -ne 0 ] | |
then | |
exit 1 | |
fi% |
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
#!/usr/bin/env node | |
var exec = require('child_process').exec, | |
Promise = require('promise'), | |
path = require('path'), | |
moment = require('moment'), | |
util = require('util'), | |
fs = require('fs'), | |
contents = null, | |
branch, commit; |