views:

144

answers:

2

I'm building a simple short URL service, ala bitly, for our company use. And I would like to use mongodb to store the data, but I will need some kind of simple interface to add/edit short url to long url mappings.

The mongo documents will be very simple, something like this:

{
  shortUrlSlug: 'pbbs',
  fullUrl: 'http://example.com/peanut/butter/and/bacon/sandwiches/'
}

Is there anything out there that exposes a simple "CRUD" admin interface to mongodb, that can be integrated with django, where you can specify the model?
Basically like django admin, but without requiring a SQL database.

Thanks!

A: 

I'm afraid you have to do the job yourself.. But if you find anything useful, don't forget to inform us here.

photon
A: 

I'm not positive, but django-nonrel and the mongodb backend may support the django admin nowadays... it might be worth looking into

http://www.allbuttonspressed.com/projects/django-nonrel

Jason