This is the open-source repository for DDDC, based on Decidim, implementing the DECODE prototypes.
You will need to do some steps before having the app working properly once you've deployed it:
- Clone this repository:
git clone https://github.com/alabs/DDDC
- Go to the directory:
cd DDDC
- Install the gems:
bundle install
- 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
- Start the web server:
rails server
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.
We implemented the DECODE prototypes based on a Decidim module. It's on the decidim-petitions/
directory.
Go to the /admin, configure a new Participatory Process, add Petition component and configure a Petition.
You can set up the Chainspace URI here.
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
}
}