AppEngine:从 app.yaml 读取值/设置
是否可以从我的 app.yaml 配置文件中读取 Python 中的设置?
Is it possible to read settings in Python from my app.yaml configuration file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不;默认情况下,app.yaml 不会上传到您的应用程序目录。您可以在项目目录中使用不同的文件名对其进行符号链接,然后在确实需要时从那里读取。您试图访问哪些设置?
No; app.yaml isn't uploaded to your application directory by default. You could symlink to it with a different filename in the project directory and then read from there if it's really necessary. What settings are you trying to access?