setup.md (Open this notebook in Stateful Cloud)
This guide is designed to walk you through the basics of the use case.
Validate your Kubernetes setup by running:
This guide is designed to walk you through the basics of the use case.
Validate your Kubernetes setup by running:
I hereby claim:
To claim this, I am signing this object:
| eatpow@eatpow:~/eatpow$ geddy jake db:init environment=production | |
| jake aborted. | |
| TypeError: Cannot read property 'successRedirect' of undefined | |
| at Object.<anonymous> (/home/eatpow/eatpow/app/helpers/passport/actions.js:4:29) | |
| (See full trace by running task with --trace) |
| var webdriver = require('wd-parallel-async') | |
| , assert = require('assert'); | |
| var username = process.env.SAUCE_USERNAME | |
| , accessKey = process.env.SAUCE_ACCESS_KEY; | |
| var parallelizer = webdriver.parallelizer({ | |
| host: "ondemand.saucelabs.com", | |
| port: 80, | |
| username: username, |
| var syncArr = []; | |
| messages.forEach(function(message) { | |
| var f = function(cb) { | |
| message.getUser(function(err, user) { | |
| message.username = user.username; | |
| cb(null, user); | |
| }) | |
| }; | |
| syncArr.push(f) | |
| }); |
| this.create = function (req, resp, params) { | |
| var self = this | |
| , conversation = geddy.model.Conversation.create(params); | |
| if (!conversation.isValid()) { | |
| params.errors = conversation.errors; | |
| self.transfer('add'); | |
| } | |
| conversation.save(function(err, data) { |
| var User = function () { | |
| this.hasMany('Messages'); | |
| this.hasMany('Conversations', {through: 'Messages'}); | |
| }; | |
| var Conversation = function () { | |
| this.hasMany('Memberships'); | |
| this.hasMany('Users', {through: 'ConversationMemberships'}); | |
| }; | |
| var User = function () { | |
| //stuff | |
| this.hasMany('Conversations'); | |
| this.hasMany('Messages', {through: 'Conversations'}); | |
| }; | |
| var Conversation = function () { | |
| //message things |
| var User = function () { | |
| //stuff | |
| this.hasMany('Conversations'); | |
| this.hasMany('Messages', {through: 'Conversations'}); | |
| }; | |
| var Conversation = function () { | |
| //message things |
| ☁ libsauceconnect [master] autoreconf -i | |
| configure.ac:12: warning: AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body | |
| ../../lib/autoconf/lang.m4:197: AC_LANG_CONFTEST is expanded from... | |
| ../../lib/autoconf/general.m4:2670: _AC_LINK_IFELSE is expanded from... | |
| ../../lib/autoconf/general.m4:2680: AC_LINK_IFELSE is expanded from... | |
| m4/libtool.m4:1100: _LT_SYS_MODULE_PATH_AIX is expanded from... | |
| m4/libtool.m4:5331: _LT_LINKER_SHLIBS is expanded from... | |
| m4/libtool.m4:5416: _LT_LANG_C_CONFIG is expanded from... | |
| m4/libtool.m4:240: _LT_SETUP is expanded from... | |
| m4/libtool.m4:104: LT_INIT is expanded from... |