Questions tagged [rack-pow]

Pow is a zero-config Rack server for Mac OS X created by 37signals.

Pow is a zero-configuration Rack server for Mac OS X. It makes developing Rails and Rack applications as frictionless as possible. You can install it in ten seconds and have your first app up and running in under a minute. No mucking around with /etc/hosts, no compiling Apache modules, no editing configuration files or installing preference panes. And running multiple apps with multiple versions of Ruby is trivial.

To serve a Rack app, just symlink it into ~/.pow directory. Let's say you're working on an app that lives in ~/Projects/myapp. You'd like to access it at http://myapp.dev/. Setting it up is as easy as:

$ cd ~/.pow
$ ln -s ~/Projects/myapp

The name of the symlink (myapp) determines the hostname you use (myapp.dev) to access the application it points to (~/Projects/myapp).

136 questions
2
votes
2 answers

POW like server for Lua web development (super simple / no config)?

Is there is simple POW like web development environment for Lua? The idea being, with a single command (no configuration) - you have a self contained web development environment for Lua up and running in seconds. (In case you're not aware, Pow is a…
frooyo
  • 1,863
  • 3
  • 19
  • 21
2
votes
2 answers

Installed pow.cx, http://appname.dev could not be opened

I installed http://pow.cx on OS X 10.6.7 and I have rvm. I installed the powder gem https://github.com/Rodreegez/powder I ran "powder" in my app directory The symlink is definitely there, I checked. When I go to http:// appname.dev (obviously…
Joe Sak
  • 770
  • 6
  • 13
2
votes
1 answer

How can I use Google Oauth with pow/anvil?

We've been using pow to easily spin up local development servers for our platform. However, Google recently broke all .dev domains in chrome by requiring them to have SSL certificates. Anvil worked around this by switching to .test domains instead…
Jacob Jackson
  • 21
  • 1
  • 5
2
votes
0 answers

Pow Powder Weird Output Message

When I do powder up I get Expected string default value for '--browser'; got false (boolean) Pow has been started. What does this mean? I'm having some configuration issues and I've never seen this before. (I'm talking about the first line…
mikelovelyuk
  • 4,042
  • 9
  • 49
  • 95
2
votes
1 answer

Rails 5 + Foreman + Pow gives me "Couldn't proxy request to localhost:5000"

I'm trying to use Foreman and Pow to work with a Rails app locally. Foreman is working and I can access the app on localhost:5000. The problem is when I go to access myapp.dev, I get the pow error page with this message: Proxy Error Couldn't proxy…
Jonathan
  • 925
  • 6
  • 19
2
votes
3 answers

LoadError: cannot load such file -- bundler/setup

We are upgrading to the latest ruby version (2.2.3) and latest rails version (4.2.4) and we can't get pass this error: LoadError: cannot load such file --…
FastSolutions
  • 1,809
  • 1
  • 25
  • 49
2
votes
1 answer

When upgrading to Rails 4.2.3 I get "NameError: uninitialized constant ActionController::Responder"

I have made quite a few gem upgrades, to get my railsversion up to 4.2.3. But when I try to access my app (running on a Pow server) I now get the following error: Your Rack app raised an exception when Pow tried to run it. NameError: uninitialized…
Cjoerg
  • 1,271
  • 3
  • 21
  • 63
2
votes
6 answers

How to generate URL with host in Rails development environment?

I am working on an application that has set its default host to localhost: config.action_controller.default_url_options = { host: "localhost" } config.action_mailer.default_url_options = { host: "localhost" } This works fine if you're serving your…
Andrew
  • 227,796
  • 193
  • 515
  • 708
2
votes
3 answers

How can I check if Pow is running correctly on my Mac? How can I get it running correctly?

I'm having difficult seeing my_proj.dev from my browser and I'd just like to check if Pow is up and running correctly, or if the issue lies elsewhere. What is a quick test I can do to see if Pow is installed and running correctly? launchctl list |…
tadasajon
  • 14,276
  • 29
  • 92
  • 144
2
votes
1 answer

Error starting application with POW - Bundler::GemNotFound

I'm using Anvil to manage my local sites. I have several and they all work fine apart from one, my most recent site. The error i get when i attempt to start it is: Error starting application Your Rack app raised an exception when Pow tried to run…
Robbo
  • 1,292
  • 2
  • 18
  • 41
2
votes
0 answers

Pow / Mavericks / Nack / RBENV / ZSH Somethng not right

I am having a quite a bit of trouble with getting pow working correctly. I am using Mavericks Rbenv ruby 1.9.3p545, pow 0.4.3 node v0.10.26 npm 1.4.7 Basically the apps I want to serve with pow, don't serve. Chrome and Firefox just keep…
Pat
  • 21
  • 1
2
votes
2 answers

Pow: display development log and use Pry?

I really like Pow, but I think I really miss an easy way to simply display the development log somehow and also interact with a binding.pry console. Isn't there an easy way to do this? I know about pry-remote, but this just is an unnecessary…
Joshua Muheim
  • 12,617
  • 9
  • 76
  • 152
2
votes
3 answers

Rack Pow failed to start ENOENT

When trying to open any *.dev project exception raises: Error: connect ENOENT Error: connect ENOENT at errnoException (net.js:901:11) at Object.afterConnect [as oncomplete] (net.js:892:19) pow log: [Thu Nov 14 2013 12:18:30 GMT+0400 (MSK)]…
nick.skriabin
  • 873
  • 2
  • 11
  • 27
2
votes
2 answers

pow with rbenv doesn't load the correct ruby version

Pow works fine with ruby 2.0.0, but when I want to use 1.9.3, pow doesn't load the correct ruby version (ruby-version file is exist with correct ruby version). Bundler::GemNotFound: Could not find rake-0.9.2.2 in any of the…
Dodjs
  • 809
  • 4
  • 13
  • 25
2
votes
1 answer

Pow doesn't work - unable to find [myapp].dev

Pow used to work for me a few months ago, but now it's not working for my new app, or for the ones that worked before. I went into ~/.pow and created a symlink, but when I type MYAPPNAME.dev/ in my browser, it redirects to a cox(my internet…
kibaekr
  • 1,319
  • 1
  • 21
  • 38