I have made a Facebook app in Ruby (using Sinatra and Koala), deployed it on Heroku and sat up all the settings and it works that way, but now I have to debug some functionality and for that reason I need to run application from localhost (using foreman start).
I have read somewhere that I should make development version of my app and specify site url to localhost:[port_num] and I have done so.
The problem is when user(me) reach
localhost:5000and application redirects it to Facebook to get permissions (when Facebook login dialog should appears). At that point this error occurs:App Not Set Up: The developers of this app have not set it up properly for Facebook Login.
I saw this issue but in my development version of app there is no status and review settings and I don't see how to make application alive.

- How to set up my app for Facebook Login while it runs on localhost?
or
- What is the proper way to run Facebook app from localhost to get full functionality?