fahadiqbal1 / opendatacensus

Open Data Census website and dashboard

Home Page:http://census.okfn.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Open Data Census

Build Status

Webapp for doing Open Data Censuses including submission workflow, presentation of results and some visualization.

This also includes various ancillary information providing an overview of what is happening with release of open government data around the world (and initiatives related to it).

Demo Site

If you want to check out what an Open Data Census site looks like we have a demo site running at:

http://demo.census.okfn.org/

Overview

See: http://meta.census.okfn.org/doc/

Developer Stuff

The app is a simple Express NodeJS app designed to be deployed on Heroku.

Config boot sequence:

  • App boots and looks up local config (set by census deployer)
  • Looks up environment variable CONFIG_URL (plus sensitive config like DB login)
  • Loads CSV file at CONFIG_URL - this file has pointers to all other config information (see below for a template)
  • Loads all other config CSV files (Places, Datasets, Questions)

Auth

For user Auth we use Google and their OAuth 2.0.

you will need to create an App on Facebook developers section and set various config. See config section below for detail.


Developing the Code

Read the overview section of the main docs: http://meta.census.okfn.org/doc/

Install Locally

To install do the following:

  1. Get the code

     git clone https://github.com/okfn/opendatacensus
    
  2. Install node dependencies

     cd opendatacensus
     npm install .
    
  3. Set up basic developer configuration

    1. Make sure you have a google account (you will use this to login to spreadsheets)

    2. Create a Config Spreadsheet based on this template (copy and paste). Make this "public on the web" and "publish on the web".

    3. Create a Database Spreadsheet based on this template. Make this "public on the web" and "publish on the web".

    4. Add link to DB spreadsheet to the config spreadsheet (database attribute)

    5. Add your google account as read/write user on the DB spreadsheet

    6. Create a settings.json file

      { "configUrl": "replace-with-your-config-spreadsheet-url", "google": { "user": "your-user-name", "password": "your-password" } }

    Note: It is recommended to copy the Config and Database spreadsheets via the UI in Google Drive, using the "Make a copy" action. This will ensure that your spreadsheets use the 'old' Google Drive URL format.

    There is an open ticket to support the new URL format.

  4. Run the app

     node run.js
    
  5. Open http://localhost:5000 in your browser

Configuration

Core configuration is listed in lib/config.js which loads from environment variables and then via lib/util.js load method to pull in config from CSV files.

Information on general configuration can be found in http://meta.census.okfn.org/doc/

Over-riding for development

For convenience when doing local development, you can selectively override your own local config using a settings.json as follows:

  • Create settings.json

  • Copy the config object from lib/config.js and override relevant parts. Note you don't need the whole object only the bits you want to change. For example:

      {
        "google": {
          "user": "xxx",
          "password": "yyy"
        }
      }
    

Note this will not work for Heroku - instead you need to do everything via environment variables: https://devcenter.heroku.com/articles/config-vars

i18n For Templates

When templates change, the translations have to be changed. Extract the files by running this command:

gulp pot

You will need the GNU gettext commands. See here for more information.

To update the existing .po files, run:

gulp update-po

To add a new language, copy the locale/en directory to locale/[language-code].

i18n For Config

Any column can be internationalised by adding another column with @locale after it. For example, the description column can be translated to German by adding a column of description@de. Only languages which have template translations created for them are valid. The locales setting in the config document can be used to restrict the number of locales available. The first locale in the list is the default locale.

Running Tests

  • Install dev dependencies and mocha - npm install -d
  • Get the opendatacensustest google user login and add to settings.json

Then run the tests:

mocha tests/

Heroku Deployment

We have multiple apps on Heroku including:

  • Production: opendatacensus - push there from production branch
  • Staging: opendatacensus-staging - push from master

To work with a given remote:

heroku --remote production ...

To work with these do:

heroku git:remote -r production -a opendatacensus
heroku git:remote -r staging -a opendatacensus-staging
# this way git push heroku master will push to staging
heroku git:remote -a opendatacensus-staging

To avoid error suggest making the staging app the default:

git config heroku.remote staging

Appendix - Why Google Spreadsheets for the DB

Pros

  • being easy to hand-edit and view (esp for non-techies)
  • multiple formats
  • versioned (so all changes are recorded)

Cons

  • Google Spreadsheets has limited storage (400k cells etc). However, our data requirements are usually quite limited for each census.

About

Open Data Census website and dashboard

http://census.okfn.org/


Languages

Language:JavaScript 62.1%Language:HTML 21.8%Language:CSS 13.3%Language:Python 2.5%Language:Shell 0.3%