OpenNeuro is a free and open platform for analyzing and sharing neuroimaging data. It is based around the Brain Imaging Data Structure specification.
This project is managed with Lerna and Yarn. To get started, install Yarn and bootstrap the repo.
yarn installYou can run tests with yarn test at the top level of the project. For each package, yarn test --watch will interactively run the tests for changes since the last commit.
Before starting up the services, you will need to copy the example .env.example file to .env and config.env.example to config.env. Many of the values are optional, and most that aren't have default values included in their .example file. Required values below:
JWT_SECRETinconfig.envmust be set to a large random string.PERSISTENT_DIRin.envis an absolute path to a directory that will be used to store datasets. This should be a git-annex compatible filesystem and large enough to store some test datasets.
To setup Google as an authentication provider, register a new client app and set the following variables. For development use, you will create a new Google project with oauth credentials for a JavaScript client side app. "Authorized JavaScript Origins" is set to http://localhost:9876 and "Authorized Redirect URIs" is set to http://localhost:9876/crn/auth/google/callback for a site accessible at http://localhost:9876.
# Ending in .apps.googleusercontent.com
GOOGLE_CLIENT_ID=
# 24 character secret string
GOOGLE_CLIENT_SECRET=
podman-compose is used to run a local copy of all required services together.
If you're working on macOS and encounter issues with file watching in Vite, use the following environment variables (in config.env):
CHOKIDAR_USEPOLLING=true
If you're working on macOS and encounter issues with elastic search, use the following environment variables (in config.env):
ES_JAVA_OPTS: -XX:UseSVE=0
CLI_JAVA_OPTS: -XX:UseSVE=0
# This will run podman-compose in the background (-d flag is --detach)
podman-compose up -dFor example, you can restart the server container with podman-compose restart server or view logs with podman-compose logs -f --tail=10 server.
- OpenNeuro app - React frontend
- OpenNeuro server - Node.js GraphQL API
- OpenNeuro indexer - ElasticSearch indexer
- OpenNeuro command line tools - Deno command line tools for uploading and downloading datasets
- DataLad service - DataLad compatible dataset worker microservice
- bids-validator - BIDS validation library
JavaScript packages are published in the @openneuro npm namespace.
OpenNeuro supports a CLI tool based on nodejs for uploading and downloading OpenNeuro datasets.