App Engine 的工作流程

发布于 2024-09-01 07:02:56 字数 117 浏览 1 评论 0原文

我即将第一次启动 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2024-09-08 07:02:56

您计划开发多大的应用程序?使用 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 need appcfg.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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文