martino
martino

Reputation: 31

How to execute "bin/setup" in rails on Windows?

As far as I know bin/setup is for easy set up for every project in rails e.g installing required gems, preparing database etc. But how to do this in Windows environment?

Upvotes: 2

Views: 3337

Answers (1)

Matt
Matt

Reputation: 14038

You'll need ruby installed first. Open a command prompt in the relevant folder and run: ruby bin/setup

Upvotes: 6

Related Questions