🔁Debugging in VS Code
Last updated
Last updated
Multiple launch configurations and tasks are defined for AppFlowy. These are used in the build process in order to generate needed files, clean up temporary files, and compile the source code.
A launch configuration is what is used when you type F5
or Ctrl-F5
to launch the application.
You can select your preferred launch configuration by going to the Run and Debug
tab in VS Code.
Name | Description |
---|---|
AF-desktop: Build All | This will build the Rust and Dart code of AppFlowy. |
AF-desktop: Build Dart Only | This will only build the Dart code of AppFlowy. This should be your default when you are working on Flutter code. |
AF-desktop: Clean + Rebuild All | This task will:
This launch configuration is a convenience. A better way to do this would be to directly trigger the " |
AF-desktop: Debug Rust | This will show the |
AF-tauri: Debug backend | Run the tauri application and enable debugging the backend |
Launch configurations are defined in the /frontend/.vscode/launch.json
file
Tasks are be launched manually (although you are free to keybind them locally). You can see a list of all tasks available by initiating the command palette (Ctrl-Shift-P
) and then typing "run task".
You can now type "AF:" to see a list of all AppFlowy provided tasks. Click on the desired task to trigger it.
We recommend binding the Alt-T key combination to the "Tasks: Run Task" command. This is done by initiating the command palette (Ctrl-Shift-P
) and then typing "Open Keyboard Shortcuts
".
Note that Ctrl-Shift-B
will trigger the default build task. We have configured AF: Code Gen
as the default build task.
In order to make them easy to identify, all AppFlowy defined tasks are prefixed with "AF: "
Name | Description | Depend On |
---|---|---|
AF: Clean + Rebuild All | This task will clean the code base, regenerate all needed files, and then build the Rust and Dart code of AppFlowy. |
|
AF: Build Appflowy Core | This task builds only the Rust code of AppFlowy. | |
AF: Code Gen | This task will regenerate the required files to build AppFlowy. This includes the language translations, freezed files. It does not include the protobuf files.
Note: This is the "default build task", this can be executed at any time by typing |
|
AF: Flutter Pub Get | This will execute the | |
AF: Flutter Package Get | This will execute the | |
AF: Generate Freezed Files | This will generate all the required freezed files. | |
AF: Generate Language Files | This will generate all the required language translation files | |
AF: flutter build aar | This will build AppFlowy in .aar format |
Tasks are defined in the /frontend/.vscode/tasks.json
file.