如何确保导入的文件上传到 Google App Engine?
How do I make sure imported files are uploaded to Google App Engine?
我有一个应用程序,其入口点在 Emily.py 中定义。
Emily.py 导入 EmilyBlogModel.py 和 EmilyBlogModel.py 导入 EmilyTreeNode.py.
使用 appcfg.py 将此应用程序上传到 Google App Engine 时,如何确保我的所有文件都已上传?
更新过程并不真正对代码进行任何分析,它只是上传它在根文件夹(您的 app.yaml
所在的位置)下找到的所有内容,如 noted in the docs:
The update action creates or updates the app version named in the app.yaml file at the top level of the directory. It follows symlinks and recursively uploads all files to the server.
唯一的例外是 skipped files,您可以对其进行个性化设置以实现相反的效果。
我有一个应用程序,其入口点在 Emily.py 中定义。 Emily.py 导入 EmilyBlogModel.py 和 EmilyBlogModel.py 导入 EmilyTreeNode.py.
使用 appcfg.py 将此应用程序上传到 Google App Engine 时,如何确保我的所有文件都已上传?
更新过程并不真正对代码进行任何分析,它只是上传它在根文件夹(您的 app.yaml
所在的位置)下找到的所有内容,如 noted in the docs:
The update action creates or updates the app version named in the app.yaml file at the top level of the directory. It follows symlinks and recursively uploads all files to the server.
唯一的例外是 skipped files,您可以对其进行个性化设置以实现相反的效果。