kungfucsiga
kungfucsiga

Reputation: 339

How to display rails app at shopify frontend

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

Answers (1)

joecritch
joecritch

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

Related Questions