Skip to content

Commit

Permalink
116 - Update Edge CLI Readme sections (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdtrejo authored Nov 27, 2024
1 parent 2ea4e7d commit 5e0fdb5
Show file tree
Hide file tree
Showing 5 changed files with 249 additions and 4 deletions.
51 changes: 50 additions & 1 deletion Minimal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,12 @@ enter its virtual environment:
$ edge app shell
```

To rebuild the application's EDM environment:

```
$ edge env build
```

See the full list of application commands with:

```
Expand All @@ -356,4 +362,47 @@ Run any given command in verbose mode for debugging:

```
$ edge app --verbose <command>
```
```

## Handling Application Compatibility in Edge CLI

When working with the new Edge CLI alongside an older installed application, you
might encounter compatibility issues during the build process. These issues
arise because the configuration file format has changed, and the new CLI is
designed for the updated format. Follow the steps below to resolve the issue:

### Instructions

1. Trigger the Build

Run the following command to build your app:

```
$ edge app build
```

If your app's configuration is incompatible with the new CLI, the command will
fail with a message indicating the need to upgrade.

2. Upgrade the App Configuration

Upgrade the application's configuration to the new format using:

```
$ edge app upgrade
```

This command updates the application's configuration file to match the
requirements of the new Edge CLI. If the configuration is already compatible,
the command will exit cleanly, confirming that no further changes are necessary.

3. Rebuild the App

Attempt the build again:

```
$ edge app build
```

This time, the build should succeed, as the configuration has been updated to
ensure compatibility with the new CLI.
51 changes: 50 additions & 1 deletion Panel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,12 @@ enter its virtual environment:
$ edge app shell
```

To rebuild the application's EDM environment:

```
$ edge env build
```

See the full list of application commands with:

```
Expand All @@ -335,4 +341,47 @@ Run any given command in verbose mode for debugging:

```
$ edge app --verbose <command>
```
```

## Handling Application Compatibility in Edge CLI

When working with the new Edge CLI alongside an older installed application, you
might encounter compatibility issues during the build process. These issues
arise because the configuration file format has changed, and the new CLI is
designed for the updated format. Follow the steps below to resolve the issue:

### Instructions

1. Trigger the Build

Run the following command to build your app:

```
$ edge app build
```

If your app's configuration is incompatible with the new CLI, the command will
fail with a message indicating the need to upgrade.

2. Upgrade the App Configuration

Upgrade the application's configuration to the new format using:

```
$ edge app upgrade
```

This command updates the application's configuration file to match the
requirements of the new Edge CLI. If the configuration is already compatible,
the command will exit cleanly, confirming that no further changes are necessary.

3. Rebuild the App

Attempt the build again:

```
$ edge app build
```

This time, the build should succeed, as the configuration has been updated to
ensure compatibility with the new CLI.
51 changes: 50 additions & 1 deletion Plotly Dash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,12 @@ enter its virtual environment:
$ edge app shell
```

To rebuild the application's EDM environment:

```
$ edge env build
```

See the full list of application commands with:

```
Expand All @@ -335,4 +341,47 @@ Run any given command in verbose mode for debugging:

```
$ edge app --verbose <command>
```
```

## Handling Application Compatibility in Edge CLI

When working with the new Edge CLI alongside an older installed application, you
might encounter compatibility issues during the build process. These issues
arise because the configuration file format has changed, and the new CLI is
designed for the updated format. Follow the steps below to resolve the issue:

### Instructions

1. Trigger the Build

Run the following command to build your app:

```
$ edge app build
```

If your app's configuration is incompatible with the new CLI, the command will
fail with a message indicating the need to upgrade.

2. Upgrade the App Configuration

Upgrade the application's configuration to the new format using:

```
$ edge app upgrade
```

This command updates the application's configuration file to match the
requirements of the new Edge CLI. If the configuration is already compatible,
the command will exit cleanly, confirming that no further changes are necessary.

3. Rebuild the App

Attempt the build again:

```
$ edge app build
```

This time, the build should succeed, as the configuration has been updated to
ensure compatibility with the new CLI.
51 changes: 50 additions & 1 deletion React/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,12 @@ enter its virtual environment:
$ edge app shell
```

To rebuild the application's EDM environment:

```
$ edge env build
```

See the full list of application commands with:

```
Expand All @@ -379,4 +385,47 @@ Run any given command in verbose mode for debugging:

```
$ edge app --verbose <command>
```
```

## Handling Application Compatibility in Edge CLI

When working with the new Edge CLI alongside an older installed application, you
might encounter compatibility issues during the build process. These issues
arise because the configuration file format has changed, and the new CLI is
designed for the updated format. Follow the steps below to resolve the issue:

### Instructions

1. Trigger the Build

Run the following command to build your app:

```
$ edge app build
```

If your app's configuration is incompatible with the new CLI, the command will
fail with a message indicating the need to upgrade.

2. Upgrade the App Configuration

Upgrade the application's configuration to the new format using:

```
$ edge app upgrade
```

This command updates the application's configuration file to match the
requirements of the new Edge CLI. If the configuration is already compatible,
the command will exit cleanly, confirming that no further changes are necessary.

3. Rebuild the App

Attempt the build again:

```
$ edge app build
```

This time, the build should succeed, as the configuration has been updated to
ensure compatibility with the new CLI.
49 changes: 49 additions & 0 deletions Streamlit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,12 @@ enter its virtual environment:
$ edge app shell
```

To rebuild the application's EDM environment:

```
$ edge env build
```

See the full list of application commands with:

```
Expand All @@ -336,3 +342,46 @@ Run any given command in verbose mode for debugging:
```
$ edge app --verbose <command>
```

## Handling Application Compatibility in Edge CLI

When working with the new Edge CLI alongside an older installed application, you
might encounter compatibility issues during the build process. These issues
arise because the configuration file format has changed, and the new CLI is
designed for the updated format. Follow the steps below to resolve the issue:

### Instructions

1. Trigger the Build

Run the following command to build your app:

```
$ edge app build
```

If your app's configuration is incompatible with the new CLI, the command will
fail with a message indicating the need to upgrade.

2. Upgrade the App Configuration

Upgrade the application's configuration to the new format using:

```
$ edge app upgrade
```

This command updates the application's configuration file to match the
requirements of the new Edge CLI. If the configuration is already compatible,
the command will exit cleanly, confirming that no further changes are necessary.

3. Rebuild the App

Attempt the build again:

```
$ edge app build
```

This time, the build should succeed, as the configuration has been updated to
ensure compatibility with the new CLI.

0 comments on commit 5e0fdb5

Please sign in to comment.