Skip to content

Commit

Permalink
Merge pull request bids-standard#4 from bids-standard/master
Browse files Browse the repository at this point in the history
update 10/24
  • Loading branch information
franklin-feingold authored Oct 24, 2018
2 parents 36b8caa + fca7044 commit d99e4fa
Show file tree
Hide file tree
Showing 8 changed files with 199 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2
jobs:
build:
docker:
- image: circleci/python:3.6.6
steps:
- checkout
- run: sudo chown -R circleci:circleci /usr/local/bin
- run: sudo chown -R circleci:circleci /usr/local/lib/python3.6/site-packages
- restore_cache: # ensure this step occurs *before* installing dependencies
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
- run:
command: |
sudo pip install pipenv==2018.7.1
pipenv install
- save_cache:
key: deps9-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
paths:
- ".venv"
- "/usr/local/bin"
- "/usr/local/lib/python3.6/site-packages"
- run:
name: generate docs
command: pipenv run mkdocs build --clean --strict --verbose
- store_artifacts:
path: site
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
site/
13 changes: 13 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
mkdocs = "==1.0.4"
mkdocs-material = "==3.0.4"

[dev-packages]

[requires]
python_version = "3.6"
125 changes: 125 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
site_name: Brain Imaging Data Structure
theme: material
plugins:
- search
docs_dir: 'src'
use_directory_urls: false
nav:
- The BIDS Specification:
- Introduction: 01-introduction.md
- Common principles: 02-common-principles.md
- Modality agnostic files: 03-modality-agnostic-files.md
- Modality specific files:
- Magnetic Resonance Imaging: 04-modality-specific-files/01-magnetic-resonance-imaging-data.md
- Magnetoencephalography: 04-modality-specific-files/02-magnetoencephalography.md
- Task events: 04-modality-specific-files/03-task-events.md
- Physiological and other continous recordings: 04-modality-specific-files/04-physiological-and-other-continous-recordings.md
- Behavioral experiments (with no MRI): 04-modality-specific-files/05-behavioural-experiments.md
- Longitudinal and multi-site studies: 05-longitudinal-and-multi-site-studies.md
- The BIDS Starter Kit: https://github.com/bids-standard/bids-starter-kit
5 changes: 5 additions & 0 deletions readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build:
image: latest

python:
version: 3.6
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mkdocs-material
9 changes: 9 additions & 0 deletions src/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# The Brain Imaging Data Structure

This site serves as an online resource to see the current state of the
Brain Imaging Data Structure (BIDS) specification. It contains information
about the core specification, as well as many modality-specific extensions.

To get started, [check out the introduction](01-introduction.md). If you'd like
more information on how to adapt your own datasets to match the BIDS
specification, we recommend exploring the [bids-specification starter kit](https://github.com/bids-standard/bids-starter-kit).

0 comments on commit d99e4fa

Please sign in to comment.