Files

24 lines
552 B
Plaintext
Raw Permalink Normal View History

2021-09-27 19:35:30 +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:
```mdx-code-block
2021-09-27 19:35:30 +10:00
<div class="text--center">
<img
2022-08-29 20:04:52 +10:00
src={require("@site/static/img/defaultproject.webp").default}
width="50%"
class="screenshot"
/>
2021-09-27 19:35:30 +10:00
</div>
<br />
```
2021-09-27 19:35:30 +10:00
2022-03-30 23:21:33 +11:00
For more details on compilation options, please refer to the [CLI Reference](../reference/cli.mdx#build).