Skip to content

Commit 02e4f0d

Browse files
feat(cli): Update about of CLI and include docs reference.
1 parent 000edcc commit 02e4f0d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Edge Python CLI
22

3-
The Edge Python developer CLI. Write `.py`, run it, serve it, ship it. You never compile anything: `edge` hosts the Edge Python runtime in a headless Chromium provisioned by `install.sh`, then runs your code against it.
3+
The Edge Python developer command line interface. Write `.py`, run it, serve it, ship it. You never compile anything: `edge` hosts the Edge Python runtime in a headless Chromium provisioned by `install.sh`, then runs your code against it.
44

55
```bash
66
edge run app.py # run a script

cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use std::path::{Path, PathBuf};
1919
use pkg::Manifest;
2020

2121
#[derive(Parser)]
22-
#[command(name = "edge", version, about = "The Edge Python developer CLI", after_help = "Press Ctrl+C at any time to exit cleanly.")]
22+
#[command(name = "edge", version, about = "The Edge Python developer command line interface.", after_help = "Press Ctrl+C at any time to exit cleanly.", after_long_help = "Docs: https://edgepython.com/")]
2323
struct Cli {
2424
#[command(subcommand)]
2525
cmd: Cmd,

docs/pages/reference/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Command Line Interface"
3-
description: "The Edge Python developer CLI: run, serve, repl, init, package management, and build."
3+
description: "The Edge Python developer command line interface (CLI): run, serve, repl, init, package management, and build."
44
---
55

66
The `edge` developer CLI. Write `.py`, run it, serve it, ship it — you never compile anything yourself. `edge` hosts the [Edge Python runtime](/getting-started/what-it-is#where-it-runs) in a headless Chromium provisioned at install time, then runs your code against it. You just point it at a file.

0 commit comments

Comments
 (0)