dev¶
Run the application in developer mode.
Usage¶
To run your application in development mode on the current platform's default output format:
$ briefcase dev
To run your application for a different platform:
$ briefcase dev <platform>
To run your application using a specific output format:
$ briefcase dev <platform> <output format>
Briefcase will create a clean virtual environment in which to run your app. The first time the application runs in developer mode, any requirements listed in a requires configuration item in pyproject.toml will be installed into that environment.
Options¶
The following options can be provided at the command line.
-a <app name> / --app <app name>¶
Run a specific application target in your project. This argument is only required if your project contains more than one application target. The app name specified should be the machine-readable package name for the app.
-r / --update-requirements¶
Update application requirements.
--no-isolation¶
Use the currently active virtual environment (i.e., the environment where Briefcase is installed), rather than an isolated virtual environment to run the app.
--no-run¶
Do not run the application; only install application requirements.
--test¶
Run the test suite in the development environment.
Passthrough arguments¶
If you want to pass any arguments to your app's command line, you can specify them using the -- marker to separate Briefcase's arguments from your app's arguments. For example:
$ briefcase dev -- --wiggle --test
will run the app in normal mode, passing the --wiggle and --test flags to the app's command line. The app will not run in Briefcase's test mode; the --test flag will be left for your own app to interpret.
Environment variables¶
By default, briefcase dev will use the following environment variables:
PYTHONDEVMODE=1activates additional runtime checks, e.g.,DeprecationWarning(see alsoPYTHONDEVMODE)PYTHONUNBUFFERED=1forces thestdoutandstderrstreams to be unbuffered (see also the PythonPYTHONUNBUFFERED)PYTHONUTF8=1forces the usage of the UTF-8 encoding (see alsoPYTHONUTF8).
To deactivate this behavior, you can explicitly set the environment variables to empty strings:
- For one command execution on Linux or macOS:
PYTHONDEVMODE= briefcase dev - For the current shell on Linux or macOS:
export PYTHONDEVMODE= - For the current shell in Windows PowerShell:
$env:PYTHONDEVMODE = ""