Amazon Elastic Beanstalk如何接受自定义python命令?

问题描述 投票:0回答:1

我遵循了本教程,使用Amazon Elastic Beanstalk来部署Flask(Python)Web应用程序:https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create-deploy-python-flask.html

但是,我的Web应用程序是基于其他用户编写的代码构建的。当我在本地运行Web应用程序时,我运行以下命令:

python web/chat_app.py --port 12345 --config web/app_params.json --schema-path data/bookhatball-schema.json --scenarios-path scenarios_generated.json --output out

将我的Web应用程序启动到Amazon Elastic Beanstalk时,我需要运行相同的python命令。我该怎么做呢?

python amazon-web-services flask amazon-elastic-beanstalk
1个回答
0
投票

根据AWS文档here,您可以使用.ebextensions定制ElasticBeanstalk环境,这包括在启动期间在实例上运行命令。

© www.soinside.com 2019 - 2024. All rights reserved.