【发布时间】:2020-06-20 06:48:59
【问题描述】:
我按照本教程使用 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