Files
seedPass/docs/docs/content/01-getting-started/05-briefcase.md
2025-07-18 11:11:13 -04:00

947 B
Raw Blame History

Packaging the GUI with Briefcase

This project uses BeeWare's Briefcase to generate platformnative installers. Once your development environment is set up, package the GUI by running the following commands from the repository root:

# Create the application scaffold for your platform
briefcase create

# Compile dependencies and produce a distributable bundle
briefcase build

# Run the packaged application
briefcase run

Command Overview

  • briefcase create — generates the project scaffold for your operating system. Run this once per platform.
  • briefcase build — compiles dependencies and produces the distributable bundle.
  • briefcase run — launches the packaged application so you can test it locally.

After the initial creation step you can repeatedly run briefcase build followed by briefcase run to test your packaged application on Windows, macOS or Linux.