Stadtratmonitor – Frontend https://stadtratmonitor.leipzig.codefor.de
Find a file
Joerg Reichert 9e7e38b525 fix command
2023-04-29 23:11:35 +02:00
.sass-cache remove migrate 2023-04-07 21:58:47 +02:00
.vscode Update 2023 2023-03-29 21:02:52 +02:00
app use SHARED_IMPORT_SECRET 2023-04-29 22:58:51 +02:00
bin update versions 2023-04-02 13:28:57 +02:00
config use SHARED_IMPORT_SECRET 2023-04-29 22:58:51 +02:00
db remove migrate 2023-04-07 21:58:47 +02:00
docker/elasticsearch run docker container without root users, fix broken links 2023-04-16 12:52:38 +02:00
lib Use data originated from OParl API 2020-09-20 23:18:17 +02:00
log Start with a Rails app with authentication via Persona, Foundation CSS 2014-11-19 18:48:28 +01:00
public update to node 18 2023-04-08 00:01:31 +02:00
spec Fix a bunch of rubocop offenses 2020-03-11 14:29:50 +01:00
vendor update versions 2023-04-02 13:28:57 +02:00
.dockerignore Add Dockerfile and docker-compose config 2016-01-23 20:33:02 +01:00
.env.sample run docker container without root users, fix broken links 2023-04-16 12:52:38 +02:00
.gitignore use SHARED_IMPORT_SECRET 2023-04-29 22:58:51 +02:00
.project added .travis.yml 2016-03-02 20:05:12 +01:00
.rspec add rspec config 2016-02-17 07:58:57 +01:00
.rubocop.yml Fix a bunch of rubocop offenses 2020-03-11 14:29:50 +01:00
.rubocop_todo.yml Fix a bunch of rubocop offenses 2020-03-11 14:29:50 +01:00
.ruby-version use 3.2.2 2023-04-08 00:35:36 +02:00
config.ru Fix a bunch of rubocop offenses 2020-03-11 14:29:50 +01:00
docker-compose.yml fix command 2023-04-29 23:11:35 +02:00
docker-compose.yml.separated set host 2023-04-07 14:28:10 +02:00
docker-entrypoint.sh fix finally server pid issue at docker container restart 2019-04-14 23:52:36 +02:00
Dockerfile run docker container without root users, fix broken links 2023-04-16 12:52:38 +02:00
Gemfile use 3.2.2 2023-04-08 00:35:36 +02:00
Gemfile.lock use 3.2.2 2023-04-08 00:35:36 +02:00
Guardfile Fix a bunch of rubocop offenses 2020-03-11 14:29:50 +01:00
LICENSE Initial commit 2014-11-19 17:03:06 +01:00
package.json remove migrate 2023-04-07 21:58:47 +02:00
Procfile use puma 2023-04-02 00:15:18 +02:00
Procfile.dev remove migrate 2023-04-07 21:58:47 +02:00
Rakefile Fix a bunch of rubocop offenses 2020-03-11 14:29:50 +01:00
README.md run docker container without root users, fix broken links 2023-04-16 12:52:38 +02:00
yarn.lock remove migrate 2023-04-07 21:58:47 +02:00

Stadtratmonitor

Offical site: https://stadtratmonitor.leipzig.codefor.de/

Usage / Features

The Stadtratmonitor Leipzig is a lightweight user interface for performing full text searches against paper contents issued to the city council of Leipzig. Note, this solution uses the data from Ratsinformationssystem Leipzig that also offers text search capabilities.

Sorting

  • Sort by date, paper was issued

Papers sorted by publishing date

  • Sort by relevance, e.g. how often the search keyword appears inside the title resp. the content of the paper

Papers sorted by relevance

Filtering

  • By paper type

Filter by paper type

  • By originator

Filter by originator

Staying up-to-date

General

Example using Firefox and RSSOWL

Click on the newsfeed icon in the address bar Abonnieren mit Firefox

Copy the URL from the address bar RSS URL in Firefox

Create a new Feed in RSSOWL and paste the just copied URL in the form RSSOWL Feed

When updating the feed in RSSOWL (or any other RSS reader of your choice) time after time all new papers matching the search query criteria will appear.

Setup

There are two ways to run this app: using a local development setup, or using docker.

Local machine setup

  1. Install Ruby, Bundler, Elasticsearch
  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. Visit http://localhost:3000

Using docker

  1. Install docker and docker-compose: https://docs.docker.com/compose/install/
  2. Start the app: docker-compose up
  3. Initialize the database: docker-compose run --user srm web rake db:setup'
  4. See "Importing data" below
  5. Get the address of the docker host: docker-machine ip default
  6. Point your browser to: 'http://<IP of docker host>:3000'
rake assets:clean
rake assets:clobber
rake tmp:clear

npm install -g sass
#rails css:install:bootstrap
#rails javascript:install:esbuild
rake assets:precompile

Importing data and building the index

  1. You can use our allris-scraper to download the papers (resp. their links) from the OPARL API, this will produce an input.json file
  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
  3. Import the data from our scraper: docker-compose run --user srm web rake import_papers'
  4. 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