Note to install the software below we recommend the following package managers:
- Mac OS X: Homebrew
- Linux/Unix: bundled package manager (e.g. apt-get, yum)
- Ruby
- Use of rbenv is recommended.
- Running
rbenv install
in the project root will install the version you need. - If not using
rbenv
, see the.ruby-version
file in the project root to get the required version number. - Bundler is expected to be available. Run
gem install bundler
to install it.
- Node
- Use of nvm is recommended.
- Running
nvm install
in the project root will install the version you need. - Note that
nvm
does NOT shim Node executables sonvm use
is required to load the right Node versions in each new shell session. - Alternatively, use can use e.g.
nvm alias default 10
to default to Node v10 in every new shell session.
- Running
- If not using
nvm
, see the.nvmrc
file in the project root to get the required version number. - The
yarn
executable must be in your PATH. To install it:brew install yarn
(on Mac)npm install -g yarn
(if you already havenpm
)
- Use of nvm is recommended.
- Memcached 1.4+
- For development environments, caching is only needed if you are developing a feature that uses caching and want to test it.
- In this case, be sure to increase the default slab page size. This is done by passing
-I 16m
to thememcached
command. - When using Homebrew via
brew install memcached; brew services start memcached
, slab size can be configured at/usr/local/Cellar/memcached/1.x.x/homebrew.mxcl.memcached.plist
- PostgreSQL 10+
- ImageMagick 6.7+
- ImageMagick is used to resize uploaded images.
- It should be available through any of the package managers listed above. If not it can be built from source.
- Chrome (Browser) 76+
- Used for automated browser testing.
- GraphViz 2.36+
- GraphViz is used to visualize the relationships between data in the database.
Linters are strongly recommended for checking your code before opening a PR. The CI system will run linters as well and your PR won't be approved until all issues are resolved or cancelled by the reviewer.
The below assume you have installed the Ruby and Node versions specified in .ruby-version
and .nvmrc
files, respectively.
Once you have nvm
and Node installed, the following lines should give you all the required linters:
nvm use
gem install rubocop -v 0.52.0
gem install scss_lint -v 0.56.0
To lint your code, simply run:
bin/lint
This will examine any modified or untracked files in your working copy.
To instead examine any new or modified files in your branch (not including uncommitted changes), run:
bin/lint --branch
The latter should be run before opening a pull request.
As part of an effort to clean up old code, you should try to resolve any linter errors in files you touch, unless there are an overwhelming number of them. At bare minimum, the lines you touch should not have any lint.
Many lints can be automatically fixed. The following commands can help, depending on what type of file you're linting:
rubocop --auto-correct file.rb
yarn run lint:js --fix file.js
yarn run lint:scss --fix file.scss
Most code editors have plugins for linting. They will identify and let you click directly into problematic lines. You are encouraged to try one out!
For Atom, install the linter
package which contains shared stuff, then:
linter-eslint
- For this one, set your Global Node Installation Path and check the 'Use global ESLint installation' box.
linter-rubocop
linter-scss-lint
git clone https://github.com/thecartercenter/nemo.git
cd nemo
If developing, it's best to work off the development branch:
git checkout develop
- Install the required gems by running
bundle install
in the project directory. - Install the required Node modules by running
yarn install
in the project directory. - Install Enketo's required Node modules by running
yarn install
in thelib/enketo-transformer-service/
directory.- TODO: Make this happen automatically during the previous step, maybe with Yarn workspaces.
- Run
cp config/database.yml.example config/database.yml
. - (Optional) Create a
.env.development.local
file and override any settings from.env
as you see fit. Note that a valid Google Maps API key must be present for certain tests to pass. - Load the database schema and seed the database:
bundle exec rake db:setup
. - Pre-process the theme SCSS files:
bundle exec rake theme:preprocess
- Create an admin account:
bundle exec rake db:create_admin
. You should receive a message like this: "Admin user created with username admin, password hTyWc9Q6" (The password is random, copy it and use on your first login). - Optionally, you can create some fake data to get things rolling by running
bundle exec rake db:create_fake_data
.
- Run
nvm use
to ensure you have the right version of Node.js loaded. Do this once per console session. - Run
rspec
to test Rails.- All tests should pass. Running them takes about 10-15 minutes.
- If you have trouble debugging a feature spec, you can run it headed (so you can watch the browser go through the spec) by doing
HEADED=1 bundle exec rspec spec/features/your_spec.rb
.
- Run
yarn test
to test React components.- These rely on separately compiled i18n translations which can be generated via
rails i18n:js:export
- Update snapshots and re-run on change:
yarn test -u --watch
- These rely on separately compiled i18n translations which can be generated via
For a development setup, run nvm use && bundle exec rails s
.
You may want to run bundle exec rake db:create_fake_data
to create a sample mission.
- Navigate to http://localhost:3000
- Login with username admin and use the random password that was generated when you ran
bundle exec rake db:create_admin
(make sure to change the password after login). - Create a new Mission and get started making forms!
After initial configuration using the development steps above:
- Re-process the SCSS files as well as webpacker assets:
RAILS_ENV=production bundle exec rake assets:precompile
- Run in production mode, and allow Rails to serve static files instead of nginx:
RAILS_ENV=production RAILS_SERVE_STATIC_FILES=1 bundle exec rails s
In production mode, logs won't show up in the console like usual; they can be found in logs/production.log
.
NEMO includes several React components that are provided via react-rails.
Database schema migrations can be run with rails db:migrate
.
You'll also need to run rails db:test:prepare
for specs to pass.
Operations like data import run asynchronously using a background tool called delayed_job.
You can run this locally via bin/delayed_job start
.
To log output from these background jobs, you can use Delayed::Worker.logger.info("foo")
and
view log/dj.log
within a few minutes (the log file doesn't always update immediately).
- Download the Collect app onto your Android device or run it on an emulator
- Configure your rails development server so Collect can find it
- Option A:
- Run
./bin/server -b 0.0.0.0
to expose NEMO on a local network - Allow your emulator to access local ports:
adb reverse tcp:8443 tcp:8443
- Run
- Option B:
- Run
ngrok http 8443
to expose NEMO publicly - Allow the ngrok host to serve Rails by adding
config.hosts << "YOUR_ID.ngrok.io"
todevelopment.rb
, then restart NEMO
- Run
- Option A:
- Make your form live in NEMO
- Point Collect to your development server
- In Collect, go to
General Settings > Platform Settings > URL
- For the URL put:
http://YOUR_IP:8443/m/your_mission
orhttps://YOUR_ID.ngrok.io/m/your_mission
, replacingYOUR_IP
with0.0.0.0
or equivalent (from option A), orYOUR_ID
with the ID provided by ngrok (from option B) - Put in your username and password
- In Collect, go to
- Retrieve Form
- In Collect, you should now be able to go to
Get Blank Form
to download the forms from NEMO - If it fails, try restarting the server to make sure any config changes above were applied. Then check the server logs to make sure the connection is really going through.
- In Collect, you should now be able to go to
- If the form doesn't work right, look at xml directly by adding
.xml
to the URL path, e.g. http://nemo.test/en/m/sandbox/forms/form-123.xml
See also ODK docs.
- Download example form from https://github.com/opendatakit/sample-forms
- Send to your device:
adb push myform.xml /sdcard/Android/data/org.odk.collect.android/files/projects/12345/forms/
- Try out form, make changes, repeat.
Sometimes, the Collect app has an error downloading/uploading but doesn't display the actual error message to the user. These errors can be extremely hard to diagnose. You can find the raw device logs by either:
- Use a USB cable to physically connect a phone running the production Collect app to your laptop and use
adb logcat
from your terminal- Note: These logs will be limited and hard to parse without the source code
- Run Collect from source by following the instructions at https://github.com/getodk/collect
- In short: clone the repo and run it on an emulator via Android Studio
- Note: It's best to debug from the latest public release (e.g.
git checkout v2021.3.2
) rather than from their main branch which may have active issues - Note: These logs will be more useful than USB debugging, and point directly to source code with more context. You can also modify the source code in order to provide more context, pause at breakpoints to step through the code, etc.
Note: from one year to another, the Android ecosystem changes and Collect also modifies their architecture. They don't always document upgrade instructions very clearly, so ODK's #collect-code Slack channel can be a good place to get help with error messages on upgrade if you can't figure out what's wrong.
See here for a birds-eye overview of Enketo in NEMO.
Enketo uses jQuery under the hood, and it's important to keep library versions consistent so there aren't conflicts. To upgrade our version of Enketo:
- Check their changelog
- Update
package.json
(enketo-core, possibly jquery) andlib/enketo-transformer-service/package.json
(enketo-transformer) as appropriate - Verify that the changes in
yarn.lock
seem valid (e.g. we don't suddenly have TWO different versions of jQuery floating around) - Restart the dev server
If you ever see check_yarn_integrity error Integrity check failed
or Your Yarn packages are out of date!
simply follow the instructions by running yarn install --check-files
.
Note if you previously ran yarn install
with a different version of Node, the integrity check will fail.
If you frequently see this error, make sure you execute nvm use
before yarn install
.
If you ever see Missing file extension for "../assets/javascripts/i18n/translations"
or similar,
make sure you've run rails i18n:js:export
in order to provide the translations files to JS scripts.