Added new appstore-db.

This commit is contained in:
Gunther Brunner
2014-08-06 21:20:43 +09:00
parent 19fef4678e
commit 090b27a8fe
5 changed files with 85 additions and 39 deletions

View File

@@ -0,0 +1,12 @@
var serveStatic = require('serve-static')
var pathutil = require('../../../util/pathutil')
module.exports = function() {
return serveStatic(
pathutil.root('node_modules/stf-appstore-db/dist')
, {
maxAge: '30d'
}
)
}