Skip to content
Merged
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
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ The examples are served at http://localhost:3000/ and include:

**Next.js Notebook Example:**

Located in `examples/nextjs-notebook/`, this is a full Next.js application demonstrating platform integration:
Located in `examples/nextjj/`, this is a full Next.js application demonstrating platform integration:

```bash
cd examples/nextjs-notebook
cd examples/nextjj
npm install
npm run dev
Comment on lines 125 to 132
Copy link

Copilot AI Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doc points to examples/nextjj/, but the repo directory is examples/nextjs/. Either rename the folder accordingly or update this path so the example can be found and run.

Copilot uses AI. Check for mistakes.
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ Available at http://localhost:3000/:
A complete Next.js application demonstrating platform integration:

```bash
cd examples/nextjs-notebook
cd examples/nextjj
Copy link

Copilot AI Mar 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The README instructions reference examples/nextjj, but the repository contains examples/nextjs (workspace name is nextjj-example). Either rename/move the directory to match the docs, or update the docs back to the correct path so users can follow the setup steps.

Suggested change
cd examples/nextjj
cd examples/nextjs

Copilot uses AI. Check for mistakes.
npm install
npm run dev
```
Expand Down
2 changes: 2 additions & 0 deletions datalayer_core/cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
from datalayer_core.cli.commands.runtimes import runtimes_list, runtimes_ls
from datalayer_core.cli.commands.secrets import app as secrets_app
from datalayer_core.cli.commands.secrets import secrets_list, secrets_ls
from datalayer_core.cli.commands.otel import app as otel_app
from datalayer_core.cli.commands.tokens import app as tokens_app
from datalayer_core.cli.commands.tokens import tokens_list, tokens_ls
from datalayer_core.cli.commands.usage import app as usage_app
Expand Down Expand Up @@ -70,6 +71,7 @@ def main_callback(
app.add_typer(benchmarks_app)
app.add_typer(console_app)
app.add_typer(envs_app)
app.add_typer(otel_app)
app.add_typer(runtimes_app)
app.add_typer(secrets_app)
app.add_typer(snapshots_app)
Expand Down
Loading
Loading