Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sails new program fix and link #228

Merged
merged 1 commit into from
Mar 10, 2025
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
2 changes: 1 addition & 1 deletion docs/build/sails/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To get started with the migration process, you can use a template to create a ne
- After installation, you can generate a new project named "vara-app" by running:

```bash
cargo sails new-program vara-app
cargo sails program vara-app
```

## Migrating Action Handling
Expand Down
2 changes: 1 addition & 1 deletion docs/build/sails/sails.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar_label: Sails Library

## Introduction

Sails is a library designed to elevate the experience of developing applications with Gear Protocol,
**[Sails](https://github.com/gear-tech/sails)** is a library designed to elevate the experience of developing applications with Gear Protocol,
placing a strong emphasis on simplicity and clarity. It removes the need to write low-level boilerplate code with `gstd`,
allowing developers to focus on business challenges. Additionally, Sails automatically generates a corresponding Interface Definition Language (IDL)
file for the application, which outlines data types, services, constructors, and events in a language-independent format.
Expand Down
4 changes: 2 additions & 2 deletions docs/examples/examples.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ cargo install sails-cli
<td>
The latest version is tagged in the `Cargo.toml` file autmatically when creating a new program (for example named 'vara-app'):
```bash
cargo sails new-program vara-app
cargo sails program vara-app
```
</td>
</tr>
Expand Down Expand Up @@ -134,7 +134,7 @@ It is highly recommended to use Linux or macOS for compiling Vara nodes and prog
- Create a new project (named, for example - `vara-app`) by running:

```bash
cargo sails new-program vara-app
cargo sails program vara-app
```

Your `vara-app` directory tree should look like this
Expand Down
Loading