App Engine 的工作流程
我即将第一次启动 App Engine 项目。最有可能使用Python。我想知道是否有人可以在开发时详细说明他们的工作流程,从而为我提供帮助。从开始到部署,您使用哪些工具?您是否对这些工具进行了任何应用程序引擎特定配置?
I'm about to start an App Engine project for the first time. Most likely with Python. I was wondering if anybody could give me a leg up by detailing their workflow when developing for it. What tools do you use to go from start to deployed? Did you do any app engine specific configurations to those tools?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您计划开发多大的应用程序?使用 python 运行时,只需使用文本编辑器就可以轻松开发中型到大型应用程序(我使用 TextMate 或 vi)。
Python 是一种极其简洁的语言(或者可以是),您可以在一个文件中拥有多个相关的处理程序,因此您不需要任何东西来处理一堆目录中的十多个文件,就像使用 Java 一样。
要在本地测试您的应用程序,您只需要
dev_appserver.py
,要上传您的应用程序,您只需要appcfg.py
。简单易行。即使您计划编写一个巨大的复杂应用程序,我也会从一个简单的文本编辑器开始,然后在您发现需要它们时找到更强大的工具(并且具体知道您需要它们做什么)。
How big of an application are you planning? Using the python runtime, it's pretty easy to get even a medium-to-large sized app developed with nothing more than a text editor (I use TextMate or vi).
Python is an incredibly terse language (or can be), and you can have multiple related handlers in one file, so you don't need anything to handle more than a dozen files across a bunch of directories, like you might with Java for example.
To test your app locally you just need
dev_appserver.py
and to upload your app you just needappcfg.py
. Easy peasy.Even if you're planning on writing a huge complex app, I would just start small with a simple text editor and find more robust tools when you find that you need them (and know specifically what you need from them).