mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
update readme
This commit is contained in:
parent
4a36a899e3
commit
26890ff097
27
README.md
27
README.md
@ -561,13 +561,28 @@ This will create a new directory with a given package name. The new package will
|
|||||||
- inputs.leo # Your program inputs for main.leo
|
- inputs.leo # Your program inputs for main.leo
|
||||||
- outputs # Your program outputs
|
- outputs # Your program outputs
|
||||||
- src
|
- src
|
||||||
- lib.leo # Your program library
|
|
||||||
- main.leo # Your program
|
- main.leo # Your program
|
||||||
- tests
|
- tests
|
||||||
- test.leo # Your program tests
|
- test.leo # Your program tests
|
||||||
- Leo.toml # Your program manifest
|
- Leo.toml # Your program manifest
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Flags
|
||||||
|
```rust
|
||||||
|
leo new {$Name} --bin
|
||||||
|
```
|
||||||
|
This will create a new directory with a given package name. The new package will have a directory structure as above.
|
||||||
|
|
||||||
|
```rust
|
||||||
|
leo new {$Name} --lib
|
||||||
|
```
|
||||||
|
This will create a new directory with a given package name. The new package will have a directory structure as follows:
|
||||||
|
```
|
||||||
|
- src
|
||||||
|
- lib.leo # Your program library
|
||||||
|
- Leo.toml # Your program manifest
|
||||||
|
```
|
||||||
|
|
||||||
### `leo init`
|
### `leo init`
|
||||||
|
|
||||||
To initialize an existing directory, run:
|
To initialize an existing directory, run:
|
||||||
@ -576,6 +591,16 @@ leo init
|
|||||||
```
|
```
|
||||||
This will initialize the current directory with the same package directory setup.
|
This will initialize the current directory with the same package directory setup.
|
||||||
|
|
||||||
|
#### Flags
|
||||||
|
`leo init` supports the same flags as `leo new`
|
||||||
|
```rust
|
||||||
|
leo init --bin
|
||||||
|
```
|
||||||
|
```rust
|
||||||
|
leo init --lib
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### `leo build`
|
### `leo build`
|
||||||
|
|
||||||
To compile your program and verify that it builds properly, run:
|
To compile your program and verify that it builds properly, run:
|
||||||
|
Loading…
Reference in New Issue
Block a user