-
Notifications
You must be signed in to change notification settings - Fork 13
Setting up the development environmet
Manuel Lorenzo edited this page Oct 3, 2018
·
6 revisions
Please, follow along the instructions for your OS (INSTALL POSTGRESQL)
git clone https://github.com/infusionvlc/infusion.git
Run bundle install
inside the 'infusion' app directory.
If you get an error while trying to install the pg
gem when doing a bundle install
, make sure to use homebrew
to install postgresql
with brew install postgresql
, and then run bundle install
again.
rails db:create
rails db:migrate
rails db:seed
- Now, you are ready to run the server with
rails s