Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to dump data (generated with the CRUD) into a yml data file?

This feature is available in Rails, Django, etc...

I find that the best way to create data and respect relationships is throught the CRUD admin

There's nothing about it in the Play! Yaml Documentation

I will add that it would be nice if possible to dump while using the mem (or fs) databases, though this means it cannot be done with a "play" command but could be done through a special Route maybe?

In short:

  • is there any existing 'dump' code in Play! ?
  • is it possible to dump via a $play dumpdata command?
  • is it possible to dump via special Route?
share|improve this question

1 Answer

up vote 3 down vote accepted

Sounds like you want the logisimayml module.

To export your database, simply type this command line :

play yml:generate

You should have a look through the Play Modules page. Lots of great stuff there.

share|improve this answer
Perfect! I still find play documentation difficult to browse.. or maybe just not well indexed by google! I will have to play around a little to see how it behaves with the mem db, but I guess I can always start play with "start" then issue the generate command. – Stefano Dec 13 '11 at 3:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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