bowtie icon indicating copy to clipboard operation
bowtie copied to clipboard

Can't get the bowtie on

Open funkybrain opened this issue 12 years ago • 3 comments

Hi Tomas

Sorry for troubling you with such a noob question but, but I just can't seem to get bowtie running.

I have all the required gems, and modified my config.ru and Gemfile as per your examples.

When I point my browser to /admin I get the standard sinatra 404 page. It's as if it was ignoring my config.ru? I really don't have much to go on to troubleshoot, so anything you can do to help me would be really appreciated.

-M

funkybrain avatar Dec 06 '12 00:12 funkybrain

Hi,

How are you firing up your rack server?

tomas avatar Dec 17 '12 14:12 tomas

Well Sinatra does it for me, so I just 'ruby app.rb' and it fires up Thin on port 4567.

On Monday, December 17, 2012, Tomás Pollak wrote:

Hi,

How are you firing up your rack server?

— Reply to this email directly or view it on GitHubhttps://github.com/tomas/bowtie/issues/8#issuecomment-11443754.

funkybrain avatar Dec 17 '12 14:12 funkybrain

That's why then. You should fire the app so that the config.ru gets loaded, not just the app (which you are calling directly right now). Try with 'unicorn', 'thin start' or 'rackup' at the app's root path.

tomas avatar Dec 17 '12 15:12 tomas