We have two websites built on top of the same data. Their designs (and data presentation) are totally different, but the underlying data is the same.

Both have their own top level domain.

What is the best way to structure this? Have 2 different rails apps? or two sets of views?

I have thought about a rails engine, but, they will only share models, not views and controllers, so I am not sure if this is the best approach.

Suggestions, article links, etc most welcomed!

link|improve this question

41% accept rate
feedback

2 Answers

We have several apps that use shared databases at Aframe with a set of shared models.

Try something like this structure:

app_one
  rails app structure
  ...
app_two
  rails app structure
  ...
shared
  models 

Then in each of the apps, you include everything in the shared shared/models directory.

Configure both apps to have the same database details.

This means you can write tests that touch both apps.

link|improve this answer
+1 i.e. two apps. – Michael Durrant Jan 8 at 11:56
isn't this, in essence, a hand-rolled engine? With an engine you could also share models. – phil Jan 8 at 16:04
An engine approach would assume that these ruby apps are Rails-based. Some might be little single-file scripts, others might be daemons that pick up tasks from a queue. – stef Jan 8 at 19:05
feedback

Depends if you need to access all the data in both applications, or just specific parts.

I don't think that duplicating your code between two applications is a wise thing to do. If you're presenting the data totally differently, you might need to access it differently. For example on a mobile site you might be loading only from one table, while on a regular webpage you will be loading from 5 tables at once.

Having two applications will give you much more flexibility, than having to share some code. But this of course depends on the size of the app. For 10 models I wouldn't really care about having something duplicate in two apps, but for 150 models it's a completely different story.

link|improve this answer
+1 Also true that considering current or future volume of tables and complexity of app should be considered. – Michael Durrant Jan 8 at 11:57
The more I think about it (and fool around with code) I am tempted to make an engine for the models. I know that the data is the data. Then, each app can have controllers, views and any additional data modeling it might need. – phil Jan 8 at 16:06
@phil you could do that, but if the database isn't very large, you can just easily go with two application and be happy. Sometimes it's wiser to go with a less perfect (some duplicites), but more practical solution. – Jakub Arnold Jan 8 at 18:55
feedback

Your Answer

 
or
required, but never shown

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