mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 10:06:19 +00:00
31 lines
743 B
Plaintext
31 lines
743 B
Plaintext
title: $:/plugins/tiddlywiki/aws/lambda/handler
|
|
type: text/plain
|
|
|
|
/*
|
|
TiddlyWiki for AWS
|
|
*/
|
|
|
|
exports.handler = function(event,context,callback) {
|
|
// Initialise the boot prefix
|
|
global.$tw = _bootprefix();
|
|
// Initialise the returned results
|
|
$tw["lambda-result"] = {
|
|
"files-written": []
|
|
};
|
|
// Some default package info
|
|
$tw.packageInfo = lambdaPackageInfo;
|
|
// Load any tiddlers from the package
|
|
$tw.preloadTiddlerArray(lambdaTiddlers);
|
|
// Load any tiddlers from the event
|
|
if(event.tiddlers) {
|
|
$tw.preloadTiddlerArray(event.tiddlers);
|
|
}
|
|
// Load the commands from the event
|
|
$tw.boot.argv = (event.commands || []).slice(0);
|
|
// Boot the TW5 app
|
|
_boot($tw);
|
|
$tw.boot.boot(function() {
|
|
callback(null,$tw["lambda-result"]);
|
|
});
|
|
}
|