Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an online IDE for Google App Engine?

I am learning Google App Engine / Python and I love it. Unfortunately I am not allowed to use my own computer in the office and not allowed to install anything on the corporate machine.

It would be so great to have an online IDE for Google App Engine where I could play with my Python code using any browser, including the one on my iPad.

Maybe http://www.devunity.com/ will be an online IDE for GAE some day. Do you know any existing way to program GAE in a browser?

like image 488
zengabor Avatar asked Jul 26 '10 09:07

zengabor


People also ask

Does Google have an online IDE?

And today we're excited to introduce a new version of our Cloud Shell Editor, immediately available in preview on ide.cloud.google.com and powered by the Eclipse Theia IDE platform.

What IDE is used at Google?

Developers in Google are allowed to pick whatever IDE they feel most comfortable in. They are even allowed to pick which OS they feel most comfortable in. So it ranges from anything from Vi to Emacs to NetBeans to Eclipse to Visual Studio.

What programs support Google App Engine?

Google App Engine primarily supports Go, PHP, Java, Python, Node. js, . NET, and Ruby applications, although it can also support other languages via "custom runtimes".


2 Answers

cloud-ide.com offers Exo IDE. This is a richly featured, cloud-based IDE that you use in the browser. Importantly for you, it supports the full cycle of deployment to various Platform as a Service (PaaS) providers, including Google App Engine!

I've used this before, and it's as simple as saying you want a new GAE project. You'll be redirected to Google pages when necessary to register details such as the app's name and domain. It even supports accessing GAE's log records for your app, although I've found this to be quite a bit slower than just using the Google-provided dashboard.

You can sign in with a Google account, and while I don't think that's necessary, I'd recommend it since this allows it to automatically associate the app you make with that account.

HTH

like image 73
kasopsi Avatar answered Nov 08 '22 14:11

kasopsi


Google Cloud Shell provides you with command-line access to your cloud resources directly from your browser:
Introducing Google Cloud Shell’s new code editor

like image 43
Mori Avatar answered Nov 08 '22 14:11

Mori