Skip to content

Digital Democracy and Data Commons for Barcelona

Notifications You must be signed in to change notification settings

jordibuj/DDDC

 
 

Repository files navigation

Digital Democracy and Data Commons for Barcelona

This is the open-source repository for DDDC, based on Decidim, implementing the DECODE prototypes.

Setting up the application

Development

You will need to do some steps before having the app working properly once you've deployed it:

  1. Clone this repository:
git clone https://github.com/alabs/DDDC
  1. Go to the directory:
cd DDDC
  1. Install the gems:
bundle install
  1. Set up the database. If you need you can change your settings using the environment variables from config/database.yml:
rails db:create
rails db:migrate
rails db:seed
  1. Start the web server:
rails server

Production

You should deploy it as other Ruby on Rails applications, using Capistrano or other methods for deployment that you prefer.

As a dependency it needs the decidim-decode-connector on the same server.

TODO: how to configure the local route on Decidim configuration.

About petitions module

We implemented the DECODE prototypes based on a Decidim module. It's on the decidim-petitions/ directory.

Configuring

Go to the /admin, configure a new Participatory Process, add Petition component and configure a Petition.

You can set up the Chainspace URI here.

Screenshots

GraphQL

It's important to configure the JSON attributes so it's consumed by other apps from DECODE ecosystem:

{
  "mandatory": [
    {
      "predicate": "schema:addressLocality",
      "object": "Barcelona",
      "scope": "can-access",
      "provenance": {
        "url": "http://atlantis-decode.s3-website-eu-west-1.amazonaws.com"
      }
    }
  ],
  "optional": [
    {
      "predicate": "schema:dateOfBirth",
      "object": "voter",
      "scope": "can-access"
    },
    {
      "predicate": "schema:gender",
      "object": "voter",
      "scope": "can-access"
    }
  ]
}

To consume this data, you can do it on the GraphQL API:

{
  petition(id:"1") {
    id,
    title,
    description,
    author,
    json_schema
  }
}

About

Digital Democracy and Data Commons for Barcelona

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 94.5%
  • HTML 3.8%
  • Other 1.7%