4

I am confused. I thought these were both hosting solutions that Google sells or makes free. What is the difference between the two?

Thanks, Alex

Genadinik
  • 18,153
  • 63
  • 185
  • 284

1 Answers1

8

Google Code is a SourceForge-style hosting solution for open source projects: you can host your code in a supplied Subversion or Mercurial repository and document your project in a wiki. You cannot run code on Google Code, only upload your source code to share with others. It's free.

Google App Engine is a general cloud application host. You can host web sites written in Python or Java, actually running code on Google's servers, with cost proportional to usage (it's free up to some amount).

Michael Aaron Safyan
  • 93,612
  • 16
  • 138
  • 200
Rup
  • 33,765
  • 9
  • 83
  • 112
  • 3
    GAE is free up to a certain point - 500 MB storage and 5 million views a month. – Dominic K Apr 11 '11 at 23:58
  • 1
    Thanks. Reading the links it looks like you can run Java (+ Scala + JRuby etc.) code on GAE too - so I'm well out of date. – Rup Apr 12 '11 at 00:00