我遵循了本教程,使用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命令。我该怎么做呢?
根据AWS文档here,您可以使用.ebextensions
定制ElasticBeanstalk环境,这包括在启动期间在实例上运行命令。