Skip to content

Instantly share code, notes, and snippets.

@rcatalano
Last active August 29, 2015 14:00
Show Gist options
  • Save rcatalano/11197279 to your computer and use it in GitHub Desktop.
Save rcatalano/11197279 to your computer and use it in GitHub Desktop.
BT.addTheme(BT.Theme.extend({
ref: "evelyn",
path: __dirname + '/themes/evelyn'
}));
BT.addTheme(BT.Theme.extend({
ref: 'pastel',
path: __dirname + '/themes/pastel',
css_theme: 'pastel'
}));
BT.addFramework(BT.Framework.extend({
ref: 'evelyn',
path: __dirname + '/themes/evelyn'
}));
BT.addFramework(BT.Framework.extend({
ref: 'pastel',
path: __dirname + '/themes/pastel',
dependencies: ['evelyn']
}));
BT.addFramework(BT.Framework.extend({
ref: 'eve',
path: __dirname + '/frameworks/eve',
dependencies: ['pastel', 'sproutcore:media']
}));
var sites = BT.AppBuilder.create({
path: 'apps/sites',
frameworks: ['eve'],
title: 'Site Select',
favicon: 'favicon.ico',
theme: 'pastel'
});
BT.serverConfig = {
host: "localhost",
port: 4020,
localOnly: true
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment