wails build

wails init myapp
cd myapp
wails build
  1. wails init myapp: This initializes a new Wails application named "myapp". It sets up the basic structure and necessary files for the Wails application.

  2. cd myapp: Changes the current directory to the newly created "myapp" directory.

  3. wails build: Compiles the Wails application, generating the executable file for the specified platform (e.g., Windows, macOS, Linux). This command compiles the frontend and backend code, producing the final executable file that can be run independently. ```