Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from nomad.config.models.north import NORTHTool
from nomad.config.models.plugins import NorthToolEntryPoint
from nomad.config.models.plugins import NORTHToolEntryPoint

{{cookiecutter.north_tool_name}} = NORTHTool(
short_description='Jupyter Notebook server in NOMAD NORTH for NOMAD plugin {{cookiecutter.plugin_name}}.',
Expand All @@ -18,7 +18,7 @@
display_name='{{cookiecutter.north_tool_name}}',
)

north_entry_point = NorthToolEntryPoint(
north_entry_point = NORTHToolEntryPoint(
id_url_safe='{{cookiecutter.module_name | replace("_", "-")}}-{{cookiecutter.north_tool_name | replace("_", "-")}}',
north_tool={{cookiecutter.north_tool_name}},
)
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This directory contains the configuration and a minimal Dockerfile template for

## Quick start

The {{cookiecutter.north_tool_name}} NORTH tool provides a containerized environment defined in `NORTHtool` definition, `NorthToolEntryPoint`, and Dockerfile.
The {{cookiecutter.north_tool_name}} NORTH tool provides a containerized environment defined in `NORTHtool` definition, `NORTHToolEntryPoint`, and Dockerfile.

## Base Image

Expand Down
Loading