diff --git a/README.md b/README.md index e62cd53..d791319 100644 --- a/README.md +++ b/README.md @@ -53,20 +53,18 @@ docker. ### Local machine setup 1. Install Ruby, Bundler, Elasticsearch -1. Start Elasticsearch: `elasticsearch` -1. Setup Rails app: `bundle && bundle exec rake db:setup` -1. See "Importing data" below -1. Start Rails server: `bundle exec rails s` -1. Visit [http://localhost:3000](http://localhost:3000) +2. Start Elasticsearch: `elasticsearch` +3. Setup Rails app: `bundle && bundle exec rake db:setup` +4. See "Importing data" below +5. Start Rails server: `bundle exec rails s` +6. Open [http://localhost:3000](http://localhost:3000) ### Using docker 1. Install docker and docker-compose: https://docs.docker.com/compose/install/ -1. Start the app: `docker-compose up` -1. Initialize the database: `docker-compose run --user srm web rake db:setup'` -1. See "Importing data" below -1. Get the address of the docker host: `docker-machine ip default` -1. Point your browser to: 'http://\:3000' +2. Start the app: `docker-compose up` +3. Initialize the database: `docker exec stadtratmonitor-web sh -c "rake db:setup && rake import_papers && rake index:rebuild"` +4. Open [http://localhost:3000](http://localhost:3000) ``` rake assets:clean @@ -80,15 +78,13 @@ rake assets:precompile ``` -### Importing data and building the index +### Importing data via allris-scraper (optional) 1. You can use [our allris-scraper](https://github.com/CodeforLeipzig/allris-scraper) to download the papers (resp. their links) from the [OPARL](https://oparl.org/) API, this will produce an input.json file -1. Put this input.json to a public web server and set the URL to this file then in: +2. Put this input.json to a public web server and set the URL to this file then in: `app/controllers/import_controller.rb` and `lib/tasks/import_papers.rake` -1. Import the data from our scraper: `docker-compose run --user srm web rake import_papers'` -1. Build the elasticsearch index: `docker-compose run --user srm web rake index:rebuild'` ### Running tests Assuming docker and docker-compose is installed: -1. `docker-compose run --user srm web bin/run-tests` +1. `docker-compose run web bin/run-tests`