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).
If you want to check out what an Open Data Census site looks like we have a demo site running at:
See doc/admin.md
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)
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.
To install do the following:
-
Get the code and init the submodules (for recline vendor library)
git clone https://github.com/okfn/opendatacensus git submodule init git submodule update
-
Install node dependencies
cd opendatacensus npm install .
-
Run the app
node run.js
-
Should now be running at http://localhost:5000
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.
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
When templates change, the translations have to be changed. Extract the files by running this command:
./node_modules/.bin/extract-pot --output=../messages.pot --locale locale -t jinja -f html templates
You will need the GNU gettext commands. See here for more information.
To generate the .po files and compile them to json, run the following command:
./generate-translations.sh
To update the list of languages, modify line #4
to add more in the for loop.
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.
- 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/
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
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.