Start with minikube
minikube version
minikube start
Start with kubectl
| # Facebook Graph API Example in Python | |
| # by James Thornton, http://jamesthornton.com | |
| # Facebook API Docs | |
| # https://developers.facebook.com/docs/graph-api/using-graph-api#reading | |
| # Get Your Facebook Access Token Here... | |
| # https://developers.facebook.com/tools/explorer/145634995501895/?method=GET&path=me | |
| # Before running this script... |
| Organization name: [email protected] | |
| Serial Key: eNrzzU/OLi0odswsqslJTa3IzHJIz03MzNFLzs+tMTQyNrcwsTQyAIEa5xpDAIFxDy8k |
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| #!/usr/bin/env groovy | |
| node { | |
| def app | |
| stage("Clone") { | |
| git 'https://github.com/caroso1222/ast-viewer.git' | |
| } | |
| stage("Build") { |
| var express = require('express'); | |
| var app = express(); | |
| app.configure(function () { | |
| "use strict"; | |
| app.use(express.logger('dev')); | |
| app.use(express.static(__dirname + '/public')); | |
| }); | |
| app.use(function (req, res, next) { |
| #!/bin/bash | |
| # Source: http://toomuchdata.com/2012/06/25/how-to-install-python-2-7-3-on-centos-6-2/ | |
| # Install stuff # | |
| ################# | |
| # Install development tools and some misc. necessary packages | |
| yum -y groupinstall "Development tools" | |
| yum -y install zlib-devel # gen'l reqs |
| #!/bin/bash | |
| # | |
| # btsync Start up the btsync server daemon | |
| # | |
| # chkconfig: 2345 55 25 | |
| # description: btsync is like this sync thing. Google it. | |
| # | |
| # processname: btsync | |
| # config: /etc/btsync.conf | |
| # pidfile: /var/run/btync/btsync.pid |
| (ns your-app.app | |
| (:require | |
| [matchbox.core :as m] | |
| [rum.core :as rum])) | |
| (enable-console-print!) | |
| (def root (m/connect "https://student-realestate.firebaseio.com")) | |
| (m/auth-anon root) |