Skip to content

Instantly share code, notes, and snippets.

@chaitanya9186
chaitanya9186 / Python development in Pants Tutorial.md
Last active March 20, 2017 22:28 — forked from wickman/README.md
Python development in Pants (tutorial)

Python development using Pants

brian wickman - @wickman

[TOC]

Why use Pants for Python development?

Pants makes the manipulation and distribution of hermetically sealed Python environments

@chaitanya9186
chaitanya9186 / proxy.js
Created September 27, 2016 20:36 — forked from korczis/proxy.js
A reverse-proxy for CouchDB written in Node.js
#!/usr/local/bin/node
var sys = require('sys');
var http = require('http');
var url = require('url');
var PREFIX = '/db/';
var TARGET = 'http://example.cloudant.com';
var PORT = 8001;
@chaitanya9186
chaitanya9186 / deployment-couchdb.yaml
Created September 23, 2016 22:58 — forked from kocolosk/deployment-couchdb.yaml
CouchDB 2.0 in Kubernetes
# Start a 3 node cluster and join it together automatically. Uses
# local ephemeral disk for database storage.
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: couchdb
spec:
replicas: 3
template: