我刚刚在AWS上部署了带有弹性beanstalk的flask-python应用程序,但无法找到我的应用程序源文件,如application.py或templates / index.html等
我看了看/var/../ ..或/opt/../ ..等等,但无处可寻。
是否有ebs命令,例如$ eb find' filename.py'等?
答案 0 :(得分:4)
答案 1 :(得分:1)
到目前为止,在创建eb(在64位Amazon Linux 2 / 3.1.1上运行的Python 3.7)时,使用默认的AWS Linux选项,在以下位置找到了应用程序文件:
/ var / app / current
如果这不起作用,您可以搜索一个在应用程序中唯一的文件,例如
sudo find / -name hello.html
就我而言,以上返回 /var/app/current/templates/hello.html