You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developers would benefit from having a command they can run in soroban-cli that creates a new project with the dependencies and boilerplate already filled out, ready to go.
As evidenced by this discussion, it is easy to miss the simple things like including #![no_std] in the contract.
If developers have a command to run that creates a basic contract to start with, it'll help them get started without getting bogged down in the boilerplate basics.
The command could follow the behaviors of the cargo new and cargo init commands, although for the sake of reducing the surface area of our CLI, it would be nice if we could go with one or the other.
The text was updated successfully, but these errors were encountered:
Developers would benefit from having a command they can run in soroban-cli that creates a new project with the dependencies and boilerplate already filled out, ready to go.
As evidenced by this discussion, it is easy to miss the simple things like including
#![no_std]
in the contract.If developers have a command to run that creates a basic contract to start with, it'll help them get started without getting bogged down in the boilerplate basics.
The command could follow the behaviors of the
cargo new
andcargo init
commands, although for the sake of reducing the surface area of our CLI, it would be nice if we could go with one or the other.The text was updated successfully, but these errors were encountered: