Skip to content

Commit be8b67b

Browse files
committed
build instructions
1 parent c6e512d commit be8b67b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

CONTRIBUTING.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,30 @@ git clone https://github.com/sqlpage/sqlpage
1313
cd sqlpage
1414
```
1515

16+
## Building the project
17+
18+
The first time you build the project,
19+
dependencies will be downloaded, so you will need internet access,
20+
and the build may take a while.
21+
22+
Run the following command from the root of the repository to build the project in development mode:
23+
24+
```bash
25+
cargo build
26+
```
27+
28+
The resulting executable will be in `target/debug/sqlpage`.
29+
30+
### Release mode
31+
32+
To build the project in release mode:
33+
34+
```bash
35+
cargo build --release
36+
```
37+
38+
The resulting executable will be in `target/release/sqlpage`.
39+
1640
## Code Style and Linting
1741

1842
### Rust

0 commit comments

Comments
 (0)