Files

24 lines
552 B
Plaintext
Raw Permalink Normal View History

2022-04-27 21:47:11 +10:00
---
sidebar_position: 6
---
# Compiling your Project
From the project directory, run `wails build`.
This will compile your project and save the production-ready binary in the `build/bin` directory.
If you run the binary, you should see the default application:
2022-09-18 11:00:39 +10:00
```mdx-code-block
2022-04-27 21:47:11 +10:00
<div class="text--center">
2022-09-18 11:00:39 +10:00
<img
src={require("@site/static/img/defaultproject.webp").default}
width="50%"
class="screenshot"
/>
2022-04-27 21:47:11 +10:00
</div>
2022-09-18 11:00:39 +10:00
<br />
```
2022-04-27 21:47:11 +10:00
For more details on compilation options, please refer to the [CLI Reference](../reference/cli.mdx#build).