One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| [global] | |
| default-timeout = 60 | |
| respect-virtualenv = true | |
| download-cache = /tmp | |
| log-file = /tmp/pip-log.txt | |
| [install] | |
| find-links = | |
| http://pypi.pinaxproject.com | |
| http://pypi2.pinaxproject.com |
| #!/bin/sh | |
| # Generate self signed root CA cert | |
| openssl req -nodes -x509 -newkey rsa:2048 -keyout ca.key -out ca.crt -subj "/C=AU/ST=NSW/L=Sydney/O=MongoDB/OU=root/CN=`hostname -f`/[email protected]" | |
| # Generate server cert to be signed | |
| openssl req -nodes -newkey rsa:2048 -keyout server.key -out server.csr -subj "/C=AU/ST=NSW/L=Sydney/O=MongoDB/OU=server/CN=`hostname -f`/[email protected]" | |
| # Sign the server cert |
| # create a pipline using painless to remove trailing "%" symbols | |
| PUT _ingest/pipeline/remove_percent_symbols | |
| { | |
| "description": "iterate over all properties and remove trailing % symbols", | |
| "processors": [ | |
| { | |
| "script": { | |
| "source": """ | |
| void traverse(Map o) { | |
| for (String childKey : o.keySet()) { |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |