This file contains hidden or 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
module.exports = (function() { | |
var App, | |
Spine = require('spine'), | |
$ = Spine.$; | |
// extend Spine | |
require('spine/lib/local'); | |
require('spine/lib/ajax'); | |
require('spine/lib/route'); | |
require('spine/lib/manager'); |
This file contains hidden or 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
/* jshint node: true */ | |
var argv = process.argv.slice(2); | |
var fs = require('fs'); | |
var hem = new (require('hem'))(); | |
hem.compilers.html = function(path) { | |
var nunjucks = require('nunjucks'), | |
name = path.split('app/')[1], | |
opts = { | |
name: name, |
This file contains hidden or 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
# add hem and nunjucks to your package.json | |
{ | |
... | |
"dependencies": { | |
... | |
"hem": "~0.3.6", | |
"nunjucks": "~1.0.1" | |
} | |
} |
This file contains hidden or 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 argv = process.argv.slice(2); | |
var fs = require('fs'); | |
var path = require('path'); | |
var hem = new (require('hem'))(); | |
var ect = require('ect'); | |
// ect compiler | |
hem.compilers.ect = function(path) { | |
var renderer, content, template; | |
renderer = ect({}); |
This file contains hidden or 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
""" | |
Example of setting up CORS with Bottle.py. | |
""" | |
from bottle import Bottle, request, response, run | |
app = Bottle() | |
@app.hook('after_request') | |
def enable_cors(): | |
""" |
NewerOlder