Skip to content

How should your broadcasting fees be spent? Publish your support and improve the program.

License

Notifications You must be signed in to change notification settings

sigu/rundfunk-mitbestimmen

 
 

Repository files navigation

rundfunk-mitbestimmen

Join the chat at https://gitter.im/rundfunk-mitbestimmen/Lobby Build Status

Public broadcasting in Germany receives €8,000,000,000 (eight billion euros) annually, yet it is subject to little or no public feedback, ranking, or even debate on what constitutes value or quality.

We want to change that: With this app you can make your voice heard and propose on which shows your €17.50 per month should be spent.

Live App

Visit rundfunk-mitbestimmen.de

Structure

This repository contains three important folders:

  1. frontend (EmberJS)
  2. backend (Ruby on Rails)
  3. features (Cucumber/Capybara)

Backend

The backend is responsible to store the data. Who wants to pay for which broadcast and how much? Users are related to broadcasts via impressions in the database. The response on the impression model can be either negative, neutral and positive and indicates whether a user wants to give money to a broadcast. If the response is positive, the amount further specifies how much to pay for a broadcast. So, the sum of all amounts per user must not exceed the monthly fee of 17,50€ per month.

ER diagram

Frontend

The frontend should be as easy to use as possible. The user can login and register, fetch a set of not yet voted broadcasts, decide about broadcasts, assign money and see the public statistics. Most of these actions will send requests to the backend. The frontend should be comfortable to use, e.g. by default amounts are evenly distributed with the option to set the amount explicitly.

Process diagram

Features

We do full stack testing with Cucumber and Capybara. We specify the requirements as user stories in our Github issues and implement them as cucumber features. The cucumber features are a good starting for you to understand the current behaviour and the reasoning behind it.

Installation and Usage with Docker (quick but without software tests)

Clone the repository:

git clone https://github.com/roschaefer/rundfunk-mitbestimmen.git

If you have docker-compose installed, you can install frontend, backend and db with a single command:

dev/reset

After the installation, you can start the entire stack with:

dev/start

App is running on localhost:4200

If you want, you can create some seed data

docker-compose run backend bin/rails db:seed

Local Installation (best option for developers)

Make sure that you have a recent version of node, yarn, EmberJS, ruby and postgresql installed before you proceed. E.g. we have the following versions:

$ node --version
v6.11.2
$ yarn --version
1.1.0
$ ember --version
ember-cli: 2.14.2
node: 6.11.2
os: linux x64

$ ruby --version
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
$ psql --version
psql (PostgreSQL) 9.6.5

Clone the repository:

git clone https://github.com/roschaefer/rundfunk-mitbestimmen.git

Install dependencies and run migrations:

  1. Install dependencies for full stack testing
cd rundfunk-mitbestimmen
bundle
  1. Install frontend dependencies
cd frontend
yarn install
  1. Install backend dependencies and setup the database
cd ../backend
bundle
bin/rails db:create db:migrate
cd ..
  1. If you want, you can create some seed data
cd backend
bin/rails db:seed
cd ..

Usage

Start the backend and sidekiq:

cd backend && bin/rails s
cd backend && bundle exec sidekiq

Open another terminal and start the frontend:

cd frontend && ember server

App is running on localhost:4200

Full stack testing

Run the frontend server:

cd frontend && ember server --environment=fullstack

Open two more terminals and run the backend server and sidekiq:

cd backend && bin/rails server --environment=fullstack
cd backend && bundle exec sidekiq

Open yet another terminal and run the tests:

bundle exec cucumber

These environments serve the purpose to

  1. Stub out external services in the frontend, e.g. authentication via Auth0.
  2. Use a separate test database in the backend, which will be cleaned after each test run.

If you want to run chrome or firefox instead of headless chrome, you can set an environment variable:

bundle exec cucumber DRIVER=chrome

or

bundle exec cucumber DRIVER=firefox

Frontend tests

cd frontend && ember test --server

Backend tests

cd backend && bin/rspec

Contributing

We use this milestone as priority queue for issues.

High prioritized issues will go to the top. Issues are tagged with backend and frontend depending on where code needs to be changed.

Because GitHub lacks functionality to display estimation hours, we use Zenhub's browser plugin. Installing this plugin will show you the estimated hours per issue.

Don't be afraid about Auth0. As long as your local installation runs in development environment your login will reach the "Testing" database of Auth0. This will not pollute the production database of Auth0.

Workflow for contributing:

  1. Fork it 🍴
  2. Pick a user story from the backlog
  3. Create your feature branch: git checkout -b [issue number]_my_new_feature_branch
  4. Createfeatures/[site of change]/your.feature and copy+paste the feature description from GitHub
  5. Boot both frontend and backend as described in the section about testing
  6. Run bundle exec cucumber
  7. Append the terminal output to features/step_definitions/steps.rb and write expectations
  8. Run bundle exec cucumber - tests should fail
  9. Implement the feature
  10. Run bundle exec cucumber - tests should pass
  11. Commit your changes: git commit -am 'Add some feature'
  12. Push to the branch: git push origin -u [issue number]_my_new_feature_branch
  13. Submit a pull request ❤️

See our detailed contribution guidelines 🔍

Deployment

Our build server Travis CI takes care about automatic deployment. Approximately 15 minutes after your pull request was merged into master, you should see the changes in production.

Useful Links

License

See the LICENSE file for license rights and limitations (MIT).

About

How should your broadcasting fees be spent? Publish your support and improve the program.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Ruby 46.3%
  • JavaScript 24.3%
  • HTML 17.3%
  • PLpgSQL 6.0%
  • Gherkin 5.6%
  • CSS 0.4%
  • Shell 0.1%