Chris Kimpton
Chris Kimpton

Reputation: 5541

custom config in rails (3)

I am looking to setup an alternate development config in rails3.

I have copied the development.rb file in config/environments to developmentck.rb

Also added a section to database.yml with the above name - but when I run the mongrel server using

rails s -c developmentck

It complains that the configuration developmentck does not exist.

Thanks in advance for any tips on what this noob is doing.

~chris

Upvotes: 1

Views: 309

Answers (1)

zetetic
zetetic

Reputation: 47548

That should be -e instead of -c

Upvotes: 1

Related Questions