We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e512d commit be8b67bCopy full SHA for be8b67b
CONTRIBUTING.md
@@ -13,6 +13,30 @@ git clone https://github.com/sqlpage/sqlpage
13
cd sqlpage
14
```
15
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
35
+cargo build --release
36
37
38
+The resulting executable will be in `target/release/sqlpage`.
39
40
## Code Style and Linting
41
42
### Rust
0 commit comments