Reputation: 339
I have a Rails app deployed to Heroku, I can reach it from the backend side of my shopify store. But how can I display anything from it (at least a helloController's view) at the frontend?
Upvotes: 1
Views: 643
Reputation: 1105
You may want to look into Application Proxies. These are available in the settings for your app. This would allow you to map "/a/hello" to HelloController#index for example.
(For testing locally, you then may want to use PageKite for tunnelling the app.)
Upvotes: 3