Do you know a good CMS/Blogger application that could run over GoogleAppEngine (GAE) and that have Google Friendly Urls? I need to install an application like this for a small company, so they could publish their work and blog some interesting stuffs. Do you know any good and mature application?

Thanks in advance, Jonathan.

link|improve this question

31% accept rate
Almost a duplicate of: stackoverflow.com/questions/478760/… – Jader Dias Oct 28 '09 at 22:42
@Jader: No, you didn't requiere SEO. – Jonathan Barbero Jan 1 '10 at 3:47
feedback

5 Answers

Try http://code.google.com/p/vosao/

link|improve this answer
feedback

Johnathan,

I recommend App Engine Site Creator as an easy to use CMS for Google App Engine. It comes with friendly urls and a WYSIWYG for editing pages. I've setup several sites with it and have no complaints.

http://code.google.com/p/app-engine-site-creator/

link|improve this answer
feedback

Check out this Django Nonrel site: "Allbuttonspressed"

This project is one of the Django Framework on App Engine. It has blog application installed by default, and for me its good enough. Here is the short description

Source can be downloaded here: https://bitbucket.org/wkornewald/allbuttonspressed/src

This project support some other features along with the blog, such as

  • simplecms (to add the menu, sidebar, etc),
  • disqus (for blog comments),
  • simplesocial (to share to Google+, Facebook, or Twitter)
  • urlrouter (allow u to specify the url from the Admin Site)
  • google analytics, google custom search
  • and many more, check out their source code

And of course the special things for me is that, this project using modified version of Django Framework so you can still take the advantage of django admin site, which is awesome. For more information you can read up the Django-nonrel docs or djangoappengine Docs. The latter docs will highlight some of the limitation using django nonrel on appengine.

Good luck :)

FYI, I've just successfully deployed my appengine site using their blog application.

link|improve this answer
Since you require SEO, I haven't try this yet, but you can try github.com/willhardy/django-seo . Because it's still Django Framework, I believe you can just install into your site. And see any result for it. Good Luck :) – Yeo Aug 25 '11 at 2:50
feedback

You may want to look at CygnusCMS, a project I just released on github.

https://github.com/tomvon/cygnuscms

I wouldn't call mature but it should do what you're looking for. You can publish articles, add images and even integrate with twitter and flickr. My, albeit very lofty, goal is for CygnusCMS to be Wordpress for Python and AppEngine. Trying to keep a focus on usability good documentation in addition to good code and scalability.

link|improve this answer
Oh, and yes, it creates seo friendly urls. – tomvon Jul 3 '11 at 23:11
feedback

A small company is probably not going to get anywhere near the traffic to justify using Google App Engine. A very popular blog could be run on standard hardware and if it ever got so incredibly busy that it exhausted all your resources, it isn't that hard to add extra web servers and do some load distribution.

App Engine would be a better solution if you wanted to create your own blogging platform from scratch and then serve thousands/millions of different blogs for different people from your app.

As far as I am aware, the support on App Engine is limited to Python and a preview of Java and when it comes to applications that can run on it, these tend to be limited to development frameworks rather than turnkey applications such as Joomla, Wordpress etc. The main reason for this is that you have to write your applications in a particular way to take advantage of the scalability of AE and to use the languages that they currently support. The other stumbling block is that most turnkey apps tend to require a relational database and App Engine's datastore is not relational and doesn't work like the usual databases that these apps are built for. For example, you can't do a count of the number of records in a 'query', something that apps built on mysql/postgres/mssql almost take for granted.

link|improve this answer
10  
-1: GAE is absolutely useful for small organizations; see Wolfire's testimonial. You say "it isn't that hard to add extra web servers and do some load distribution," but nobody could spend that much, that quickly, all in time for that one spike in traffic. Scalability is a strength, not a weakness. – Nikhil Chelliah May 14 '09 at 1:35
1  
They can't spend that much but can afford to spend the time and money developing an application in app engine on a technology they clearly aren't that familiar with? By that rationale, all apps should be rewritten for app engine so they are spike immune. Unfortunately, app engine does not magically make your apps scale – Neil Trodden May 14 '09 at 8:19
..whoops, I didn't mean to submit that part message! ..continued: app engine does not make your app scale magically, you still do need to make design changes to take into account the scalable architecture. Finally, you are welcome to mod me down, but I'd be interested to see if others thought my 'answer' said it was not useful - it doesn't. My answer does address the question asked which was namely if there is a ready-to-go turnkey app for blogging and there isn't and they would need to create one themselves in a technology that (inferring from the question) they don't fully understand. – Neil Trodden May 14 '09 at 8:23
3  
A small company is however going to enjoy getting started for free and incurring reasonable charges if they ever get enough traffic. Yes, TCO includes more than the cost of hardware and network capacity, but small businesses running on sweat equity have more human capital than cash. So +1 to Nikhil. Disclosure: I don't work for/with Google and have never ever completed a GAE app. – pluckyglen Sep 11 '10 at 3:37
My Conversion Support website is currently using the Google App Engine Java SDK hosting for free. The control panel application is also hosted for free. Plus, on top of all that, it's Java! As of this comment, it's virtually impossible (if not altogether impossible) to find free Java-based hosting. If it weren't for App Engine, many startups would need to go farther into the red in order to get to the point where they are generating revenue. In summary, App Engine is an excellent choice for budding new businesses with very low traffic, and it scales. – jmort253 Feb 1 '11 at 0:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.