yubioath-flutter/README.adoc

44 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-11-19 12:05:45 +03:00
== Yubico Authenticator for Desktop
=== Requirements
You will need the Flutter SDK with enabled desktop support, see:
https://flutter.dev/desktop
Development has been done using the "Install from git" method of installing the
SDK, from the "beta" channel.
You will also need to provide a compiled version of ykman-rpc, as described in
the next section.
2021-11-19 12:05:45 +03:00
=== Building ykman-rpc
Requirements: Python >= 3.8 and Poetry.
2021-11-19 12:05:45 +03:00
The GUI requires a compiled version of ykman-rpc to run, which is built from
the sources in ykman-rpc/ in this repository. This needs to be build prior to
running `flutter build` or `flutter run`, by running `build-ykman.sh` (or
`build-ykman.bat` on Windows).
2021-11-19 12:05:45 +03:00
NOTE: You will need to re-run `ykman-build.sh` if changes have been made to
ykman-rpc's code, or if `flutter clean` has been run.
2021-11-19 12:05:45 +03:00
=== Running the app
To start the app, run:
flutter run -d <os>
where <os> is "windows", "macos", or "linux". You can add the `--release` flag
to run a release build instead of debug. Builds of the app will be create under
`build/<os>/`.
=== Running tests
Tests can be run with the command:
flutter test
=== Packaging for MacOS
See link:doc/MacOS_Packaging.adoc[MacOS Packaging].