Skip to content

Instantly share code, notes, and snippets.

@kernicPanel
kernicPanel / package.json
Last active December 12, 2015 02:18
big http + admin
{
"name": "test-big",
"description": "YOUR PROJECT DESCRIPTION HERE",
"author": "YOUR NAME <your@emailaddress.com>",
"version": "0.0.1",
"dependencies": {
"big": "*",
"resource": "*",
"resources": "*"
},
#!/bin/sh
# Setup some variables needed for bootstrapping the environment
ROOT=/home/vrde/projectz/myproject
REPOS=${ROOT}/repos
export PYTHONPATH=${REPOS}
@kernicPanel
kernicPanel / echoHttpRequest.js
Last active August 29, 2015 14:09 — forked from Marak/echoHttpRequest.js
Echo HTTP requests
module['exports'] = function echoHttp (hook) {
hook.debug("Debug messages are sent to the debug console");
hook.debug(hook.params);
hook.debug(hook.req.path);
hook.debug(hook.req.method);