如何在同一台 PC 上开发 2 个 Google App Engine 项目?
一年前,我使用自己的个人 Gmail 帐户来开发我的第一个 Google App Engine 程序,我仍在开发和使用它,我在这个私人帐户下有 2 个应用程序。
现在,我已经使用组织及其项目的另一个 gmail 帐户注册了另一个 App Engine 应用程序,但是当我第一次尝试部署第二个项目时,我注意到以下内容:
20% Scanning files on local disk.
25% Initiating update.
Password for ABC***@gmail.com:
Error Details: .....
“ABC***@gmail.com”是我的私人 gmail 帐户,用于第一个项目,我不想将第二个项目包含在我的第一个项目的 10 个应用程序中,这就是为什么我使用第二个 gmail 地址注册第二个项目,所以我的问题是:如何告诉第二个项目使用该项目的第二个 gmail 地址?配置文件中与项目关联的 Gmail 地址在哪里?
PS:我运行的是 Win 7,并使用 NetBeans 7.0 和 App Engine 1.5
A year ago I used my own personal gmail account to develop my 1st Google App Engine program, I'm still developing and using it, I have 2 apps under this private account.
Now I have registered another App Engine app with another gmail account for an organization and their project, but when I tried to deploy this second project for the first time, I've noticed the following:
20% Scanning files on local disk.
25% Initiating update.
Password for ABC***@gmail.com:
Error Details: .....
"ABC***@gmail.com" is my private gmail account which was/is used for the 1st project, I didn't want to include the 2nd project in the 10 apps of my 1st project, that's why I registered the 2nd project with the 2nd gmail address, so my question is : how to tell the 2nd project to use the 2nd gmail address for that project ? Where is the gmail address associated with the project in the config files ?
PS : I'm running Win 7, and using NetBeans 7.0 with App Engine 1.5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,您可能需要尝试 AppCfg,这是 GAE SDK 提供的命令行工具。您可以在 $GAE_FOLDER$/bin 中找到它。上传项目的命令是
appcfg -e YOUREMAIL -passin YOURPASS 更新 YOURAPP_DIR
。In this case you may want to try AppCfg, a command line tool provided with GAE SDK. You can find it in $GAE_FOLDER$/bin. The command for uploading your project is
appcfg -e YOUREMAIL -passin YOURPASS update YOURAPP_DIR
.