thinkjs/template/www/development.es
2016-06-02 17:36:54 +08:00

20 lines
393 B
JavaScript

var thinkjs = require('thinkjs');
var path = require('path');
var rootPath = path.dirname(__dirname);
var instance = new thinkjs({
APP_PATH: rootPath + path.sep + 'app',
RUNTIME_PATH: rootPath + path.sep + 'runtime',
ROOT_PATH: rootPath,
RESOURCE_PATH: __dirname,
env: 'development'
});
// Build code from src to app directory.
instance.compile({
log: true
});
instance.run();