我正在尝试为AWS Lambda设置应用程序服务器,但是在本地网络上,以便应用程序不必去互联网执行。我更喜欢使用linux盒子,我的编程环境是Java。
echo的技能将执行,然后与本地服务器通信,而不是通过互联网与Amazon的应用服务器通信。
我的问题是:如何设置应用程序服务器来处理技能?我已经完成了亚马逊的例子,我只需要让linux盒子运行Java应用程序,还是设置更多?我看到有AMI(亚马逊机器映像),但是我可以在本地部署它们还是仅用于AWS控制台?
对此的任何见解都会很棒,谢谢。
所以这就是回声之间通常的互动方式:
用户--->回声--->技能--->(互联网)应用服务器(我使用的是亚马逊托管的AWS lambda)
我想用: 用户---> Echo --->技能--->(LAN)应用服务器(无需使用互联网)。
目前我已经设置了echo和技能但LAN上没有应用服务器。申请服务器需要什么? JAWS和其他什么?
答案 0 :(得分:0)
我不确定这个问题是否仍然相关,但我正在使用DEEP Framework在本地测试代码和/或在AWS Lambda上部署代码。看看这个:
npm install deepify -g
deepify run-lambda --help
run-lambda@1.6.8 - Run Lambda function locally
Usage example: deepify run-lambda path/to/the/lambda -e='{"Name":"John Doe"}'
Arguments:
path: The path to the Lambda (directory of handler itself)
Options:
--event|-e: JSON string used as the Lambda payload
--skip-frontend-build|-f: Skip picking up _build path from the microservices Frontend
--db-server|-l: Local DynamoDB server implementation (ex. LocalDynamo, Dynalite)
--version|-v: Prints command version
--help|-h: Prints command help
此外,您可能需要考虑使用server
选项:
deepify server --help
server@1.6.9 - Run local development server
Usage example: deepify server path/to/web_app -o
Arguments:
path: The path to the Lambda (directory of handler itself)
Options:
--build-path|-b: The path to the build (in order to pick up config)
--skip-frontend-build|-f: Skip picking up _build path from the microservices Frontend
--skip-backend-build|-s: Skip building backend (dependencies installation in Lambdas and linking aws-sdk)
--skip-build-hook|-h: Skip running build hook (hook.build.js)
--port|-p: Port to listen to
--db-server|-l: Local DynamoDB server implementation (ex. LocalDynamo, Dynalite)
--open-browser|-o: Open browser after the server starts
--version|-v: Prints command version
--help|-h: Prints command help
披露:我是此框架的贡献者之一