status | uri | forum |
---|---|---|
work-in-progress |
Der Offene Rat Münster soll das politische Geschehen in Münster transparenter machen und mehr Bürgern die Möglichkeit geben sich umfassend zu informieren.
Install Docker and Fig.
Build the app:
sudo fig build
(DON'T) Setup the database:
sudo RAILS_ENV=development fig up -d db
sudo RAILS_ENV=development fig run --rm app rake db:setup
Better, import real data:
(Put latest.dump in the "db" subdirectory.)
sudo RAILS_ENV=development fig run db bash -c 'pg_restore -h $DB_PORT_5432_TCP_ADDR -d $DB_ENV_POSTGRESQL_DB -U $DB_ENV_POSTGRESQL_USER /mnt/latest.dump'
Run the app:
sudo RAILS_ENV=development fig up --no-recreate app
The app should now be available at http://localhost:3333.
Issues are managed in Github Issues. You can also view them on a Kanban board.
Either fork and pull-request or ask @kirel or @milafrerichs for access and work on feature branches.
Feature branches should be names Issue#-descriptive-name
- see https://github.com/codeformuenster/codeformuenster.github.io/branches for examples.
You can support the project by posting a bounty for a feature/issue.
Just send a PR and we will deploy when it is merged
--