Dynamoid / dynamoid

Ruby ORM for Amazon's DynamoDB.
MIT License
577 stars 197 forks source link

Dynamoid and admin panel gems like: activeadmin, rails_admin or typus #152

Open RedaBenh opened 7 years ago

RedaBenh commented 7 years ago

Hi, Can dynamoid works with admin panel gems like: activeadmin, rails_admin or typus ? Thanks

pboling commented 7 years ago

I am not sure what you are asking. I don't think any of them have integration directly with Dynamoid, though it may be possible to integrate them. I haven't used any of them together myself.

Any one else know?

baloran commented 6 years ago

@RedaBenh @pboling ActiveAdmin use the active record object to build form and action. For now I think it's a lot of work.

pboling commented 6 years ago

Oh, I see. You would need to create an adapter for any admin tool, in the same way you would create an adapter for any other non-ActiveRecord data source.

Like if you wanted to admin Mongo records, or Redis records, from an admin tool, there would have to be an adapter allowing the connection, and management of that kind of data. DynamoDB integration would be no different.

Dynamoid does not currently provide any such adapters, and building one is non-trivial. It is not on our roadmap, but an admin tool adapter project can be added to the organization if someone wants to work on it.

baloran commented 6 years ago

It's something very interesting for poc and admin dashboard. They are something existing (https://github.com/aaronshaf/dynamodb-admin) but in nodeJS.