Skip to content

Developer install instructions

Ed Tewiah edited this page Dec 22, 2017 · 1 revision

PropertyWebScraper has been built as an engine. While working with the code during development you can run it in the "spec/dummy" app.

To do this follow these instructions. First clone this project:

git clone https://github.com/RealEstateWebTools/property_web_scraper.git

Change directory to where it has been cloned to and run the following

bundle
rails db:create
rails db:migrate

You will also need to create a secrets.yml file. You can copy this file to use as a basis:

spec/dummy/config/secrets.yml.travis

There is a rails task ( bundle exec rake secret ) that will generate a unique secret_key_base value for you.

You can now change directory to "spec/dummy" and run "rails server" from there to run the project locally.

Clone this wiki locally