This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MyApp = {}; | |
MyApp.Router = Backbone.Router.extend({ | |
routes: { | |
// general routes for cross-app functionality | |
"" : "showGeneralHomepage", | |
"cart" : "showShoppingCart", | |
"account" : "showMyAccount", | |
// module-specific subroutes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#This script is intended to be run from the root of the sauce connect package. | |
SCBIN="bin/sc" | |
uname=$1 | |
akey=$2 | |
uname=$SAUCE_USERNAME | |
akey=$SAUCE_ACCESS_KEY | |
export tunnelId=$SAUCE_TUNNEL_ID | |
LOGPREFIX="/tmp" |