This is the simplest configuration for developers to start with.
- Run
docker compose run --rm django ./manage.py migrate
- Run
docker compose run --rm django ./manage.py createcachetable
- Run
docker compose run --rm django ./manage.py createsuperuser --email $(git config user.email)
and follow the prompts to create your own user. This sets your username to your git email to ensure parity with how GitHub logins work. You can also replace the command substitution expression with a literal email address, or omit the--email
option entirely to run the command in interactive mode. - Run
docker compose run --rm django ./manage.py create_dev_dandiset --owner $(git config user.email)
to create a dummy dandiset to start working with.
- Run
docker compose up
- Access the site, starting at http://localhost:8000/admin/
- When finished, use
Ctrl+C
Occasionally, new package dependencies or schema changes will necessitate maintenance. To non-destructively update your development stack at any time:
- Run
docker compose pull
- Run
docker compose build --pull --no-cache
- Run
docker compose run --rm django ./manage.py migrate
This configuration still uses Docker to run attached services in the background, but allows developers to run Python code on their native system.
- Install Docker and Docker Compose
- Run
docker compose -f ./docker-compose.yml up -d
- Install Python 3.11
- Install
psycopg2
build prerequisites. Examplepsycopg2
installation on Ubuntu 20.04:
sudo apt install libpq-dev
export PATH=/usr/lib/postgresql/X.Y/bin/:$PATH
pip install psycopg2
- Create and activate a new Python virtualenv
- Run
pip install -e .[dev]
- Run
source ./dev/export-env.sh
- Run
./manage.py migrate
- Run
./manage.py createcachetable
- Run
./manage.py createsuperuser --email $(git config user.email)
and follow the prompts. - Run
./manage.py create_dev_dandiset --owner $(git config user.email)
to create a dummy dandiset to start working with.
- Ensure
docker compose -f ./docker-compose.yml up -d
is still active - Run:
source ./dev/export-env.sh
./manage.py runserver
- Run in a separate terminal:
source ./dev/export-env.sh
celery --app dandiapi.celery worker --loglevel INFO --without-heartbeat -Q celery,calculate_sha256,ingest_zarr_archive -B
- When finished, run
docker compose stop
Attached services may be exposed to the host system via alternative ports. Developers who work on multiple software projects concurrently may find this helpful to avoid port conflicts.
To do so, before running any docker compose
commands, set any of the environment variables:
DOCKER_POSTGRES_PORT
DOCKER_RABBITMQ_PORT
DOCKER_MINIO_PORT
The Django server must be informed about the changes:
- When running the "Develop with Docker" configuration, override the environment variables:
DJANGO_MINIO_STORAGE_MEDIA_URL
, using the port fromDOCKER_MINIO_PORT
.
- When running the "Develop Natively" configuration, override the environment variables:
DJANGO_DATABASE_URL
, using the port fromDOCKER_POSTGRES_PORT
DJANGO_CELERY_BROKER_URL
, using the port fromDOCKER_RABBITMQ_PORT
DJANGO_MINIO_STORAGE_ENDPOINT
, using the port fromDOCKER_MINIO_PORT
Since most of Django's environment variables contain additional content, use the values from
the appropriate dev/.env.docker-compose*
file as a baseline for overrides.
tox is used to execute all tests.
tox is installed automatically with the dev
package extra.
To install the tox pytest dependencies into your environment, run pip install -e .[test]
.
These are useful for IDE autocompletion or if you want to run pytest
directly (not recommended).
When running the "Develop with Docker" configuration, all tox commands must be run as
docker compose run --rm django tox
; extra arguments may also be appended to this form.
Run tox
to launch the full test suite.
Individual test environments may be selectively run. This also allows additional options to be be added. Useful sub-commands include:
tox -e lint
: Run only the style checkstox -e type
: Run only the type checkstox -e test
: Run only the pytest-driven teststox -e test -- -k test_file
: Run the pytest-driven tests that match the regular expressiontest_file
tox -e test -- --cov=dandiapi
: Generate a test coverage reporttox -e test -- --cov=dandiapi --cov-report=html
: Generate an HTML test coverage report in thehtmlcov
directory
To automatically reformat all code to comply with
some (but not all) of the style checks, run tox -e format
.
To include a memory profile with your tests, add --memray
at the end of your test command invocation. For example, to run a memory profile with all tests, you would run tox -e test -- --memray
. This can be used in conjunction with other pytest CLI flags (like -k
) as well. See the pytest-memray
docs for more invocation details.
NOTE: If you have an existing dandi-archive installation in which you have previously run tox, you may need to recreate the tox environment (by adding -r
to your tox invocation) the first time you attempt to use memray. If your attempt to use the --memray
flag fails with pytest: error: unrecognized arguments: --memray
, this is likely why.
This repository now also contains sources for the web interface under web/ folder. If you would like to develop it locally, please see web/README.md file for instructions.
Read-only API endpoints (i.e. GET
, HEAD
) do not require any
authentication. All other endpoints require token authentication
to call.
Visit the URL /admin
with a web browser, logging
in with the credentials entered during the createsuperuser
setup step.
Then go to /swagger
and use GET /auth/token
end-point.
In API endpoint calls, add the Authorization
HTTP header with a value of
Token <token_value>
. For example, for a token 1234
, include the header:
Authorization: Token 1234
.
For frequent deployment administration tasks, django-extensions
provides a convenient way to write and run scripts that execute in the Django context.
python manage.py create_dev_dandiset --owner $(git config user.email) --name My Dummy Dandiset
This creates a dummy dandiset with valid metadata and a single dummy asset. The dandiset should be valid and publishable out of the box. This script is a simple way to get test data into your DB without having to use dandi-cli.
python manage.py import_dandisets [API_URL] --all
This imports all dandisets (versions + metadata only, no assets) from the dandi-api deployment
living at API_URL
. For example, to import all dandisets from the production server into your
local dev environment, run python manage.py import_dandisets https://api.dandiarchive.org
from
your local terminal. Note that if a dandiset with the same identifier as the one being imported
already exists, that dandiset will not be imported.
python manage.py import_dandisets [API_URL] --all --replace
Same as the previous example, except if a dandiset with the same identifier as the one being imported already exists, the existing dandiset will be replaced with the one being imported.
python manage.py import_dandisets [API_URL] --all --offset 100000
This imports all dandisets (versions + metadata only, no assets) from the dandi-api deployment
living at API_URL
and offsets their identifiers by 100000. This is helpful if you want to import
a dandiset that has the same identifier as one already in your database.
python manage.py import_dandisets [API_URL] --identifier 000005
This imports dandiset 000005 from API_URL
into your local dev environment. Note that if there is already
a dandiset with an identifier of 000005, nothing will happen. Use the --replace flag to have the script
overwrite it instead if desired.
- DLP: Dataset Landing Page (e.g. https://dandiarchive.org/dandiset/000027)