Skip to content

Latest commit

 

History

History
193 lines (126 loc) · 4.71 KB

README.md

File metadata and controls

193 lines (126 loc) · 4.71 KB

Start by forking main repository (/fair_nfdi/dev_distro) that will house all your plugins.

NOMAD Dev Distribution

Below are instructions for how to create a dev env for developing NOMAD and nomad plugins.

Basic infra

  1. Make sure you have docker installed. Docker nowadays comes with docker compose built in. Prior, you needed to install the stand-alone docker-compose.

  2. Make sure you have uv installed. The standalone installer or a global installation is the recommended way. (brew install uv on macOS or dnf install uv on Fedora).

  3. Clone the repository.

git clone https://github.com/your-username/dev_distro.git
cd dev_distro
  1. On Linux only, recursively change the owner of the .volumes directory to the nomad user (1000)
sudo chown -R 1000 .volumes
  1. Run the docker containers with docker compose in detached (--detach or -d) mode
docker compose up -d

To shutdown the containers:

docker compose down

Developing nomad + plugins locally.

This guide explains how to set up a streamlined development environment for nomad-lab and its plugins using uv workspaces. This approach eliminates the need for multiple pip install commands by leveraging a monorepo and a single installation step.

In this example, we'll set up the development environment for a developer working on the following computational parsers:

  • nomad-parser-plugins-electronic
  • nomad-parser-plugins-atomistic
  • nomad-parser-plugins-workflow
  • nomad-parser-plugins-database

Step-by-Step Setup

  1. Update submodules
git submodule update --init --recursive
  1. Add local plugins

Add the plugin repositories to the packages/ directory, either as submodules.

git submodule add https://github.com/package_name.git packages/package_name

Repeat for all local dev packages (e.g., nomad-parser-plugins-electronic, nomad-parser-plugins-atomistic, etc.).

  1. Modify pyproject.toml

Ensure uv recognizes the local packages by modifying the pyproject.toml:

[tool.uv.workspace]
members = ["packages/*"]

[tool.uv.sources]
nomad-lab = { workspace = true }
nomad-parser-plugins-electronic = { workspace = true }
nomad-parser-plugins-atomistic = { workspace = true }
nomad-parser-plugins-workflow = { workspace = true }
nomad-parser-plugins-database = { workspace = true }
  1. Install dependencies

Run the following command to install all dependencies, including the local packages in editable mode:

uv sync
  1. Running nomad api app.
uv run nomad admin run appworker
  1. Setup GUI
cd packages/nomad-FAIR/gui
uv run python -m nomad.cli dev gui-env > .env.development
yarn
  1. Start nomad gui
cd packages/nomad-FAIR/gui
yarn start

Day-to-Day Development

After the initial setup, here’s how to manage your daily development tasks.

  1. Update submodules
git submodule update --init --recursive
  1. Installing dependencies

If you've added new dependencies or made changes to your environment, install or update them by running:

uv sync

This will sync all packages and ensure everything is installed in editable mode.

  1. Running tests

To run tests across the project, use the uv run command to execute pytest in the relevant directory. For instance:

uv run --directory packages/package_name pytest

This allows you to run tests for a specific parser or package. For running tests across all packages, simply repeat the command for each directory.

  1. Making code changes

Since all packages are installed in editable mode, changes you make to the code are immediately reflected. Edit your code and rerun tests or the application as needed, without needing to reinstall the packages.

  1. Linting & code formatting

To check for code style issues using ruff, run the following command:

uv run ruff check .

This will lint all files.

For auto-formatting:

uv run ruff format .
  1. Adding new plugins

To add a new package, follow setup guide and add it into the packages/ directory and ensure it's listed in pyproject.toml under [tool.uv.sources]. Then, install it by running:

uv sync
  1. Keeping Up-to-Date

To pull updates from the main repository and submodules, run:

git pull --recurse-submodules

Afterward, sync your environment:

uv sync

Benefits

  • Single-Step Installation: Install all dependencies and local plugins with one command.
  • Editable Mode: Local plugins are installed in editable mode, allowing immediate reflection of code changes.
  • Centralized Development: Manage all your projects in one monorepo.