@@ -91,7 +91,6 @@ data/datasets/{id}/
9191## Setup
9292
9393``` bash
94- cd code
9594uv sync
9695```
9796
@@ -102,29 +101,26 @@ Requires Python 3.14+.
102101### Full Pipeline
103102
104103``` bash
105- cd code
106- uv run openneuro-dashboard run-all --output-dir ../data
104+ uv run openneuro-dashboard run-all
107105```
108106
109107### Individual Stages
110108
111109``` bash
112- cd code
113-
114110# Stage 1: Fetch GraphQL data
115- uv run openneuro-dashboard fetch-graphql --output-dir ../data
111+ uv run openneuro-dashboard fetch-graphql
116112
117113# Stage 2: Check GitHub mirrors
118- uv run openneuro-dashboard check-github --output-dir ../data
114+ uv run openneuro-dashboard check-github
119115
120116# Stage 3: Check S3 versions
121- uv run openneuro-dashboard check-s3-version --output-dir ../data
117+ uv run openneuro-dashboard check-s3-version
122118
123119# Stage 4: Check S3 files
124- uv run openneuro-dashboard check-s3-files --output-dir ../data -- cache-dir ~ /.cache/openneuro-dashboard/repos
120+ uv run openneuro-dashboard check-s3-files --cache-dir ~ /.cache/openneuro-dashboard/repos
125121
126122# Stage 5: Summarize
127- uv run openneuro-dashboard summarize --output-dir ../data
123+ uv run openneuro-dashboard summarize
128124```
129125
130126Common options:
@@ -135,14 +131,12 @@ Common options:
135131### Generating Test Data
136132
137133``` bash
138- cd code
139- uv run openneuro-dashboard gen-data --output-dir ../data --num-datasets 50 --seed 42
134+ uv run openneuro-dashboard gen-data --num-datasets 50 --seed 42
140135```
141136
142137## Running Tests
143138
144139``` bash
145- cd code
146140uv run --group test pytest -v
147141```
148142
0 commit comments