Yubico Authenticator for Desktop (Windows, macOS and Linux) and Android
Go to file
Dain Nilsson 6963b69c10
Improve add OATH account.
- Add padding to match Period with Digits.
- Validate secret length on submit.
2022-02-01 08:24:29 +01:00
.github/workflows Update workflow for new file name. 2022-01-26 10:51:21 +01:00
assets/product-images Add product images. 2021-11-24 13:28:38 +01:00
doc Update README 2021-11-19 10:55:43 +01:00
lib Improve add OATH account. 2022-02-01 08:24:29 +01:00
linux Linux: Change application name and ID. 2022-01-26 11:09:14 +01:00
macos MacOS: Change bundle identifier and app name. 2022-01-25 18:36:08 +01:00
test Remove executable permission from files. 2021-11-19 09:19:16 +01:00
windows Windows: Fix name of executable and file metadata. 2022-01-25 18:37:16 +01:00
yubikey-manager@765ccf63d9 Add basic NFC support. 2022-01-18 12:26:31 +01:00
.gitignore Remove executable permission from files. 2021-11-19 09:19:16 +01:00
.gitmodules Add rpc submodule. 2021-11-19 09:08:04 +01:00
.metadata Remove executable permission from files. 2021-11-19 09:19:16 +01:00
analysis_options.yaml Enable lint check for unawaited_futures. 2022-01-25 12:46:51 +01:00
build-ykman.bat Add rpc submodule. 2021-11-19 09:08:04 +01:00
build-ykman.sh Add rpc submodule. 2021-11-19 09:08:04 +01:00
build.yaml Add start of navigation structure. 2021-11-22 14:00:23 +01:00
pubspec.lock Update dependencies. 2022-01-19 13:57:09 +01:00
pubspec.yaml Update dependencies. 2022-01-19 13:57:09 +01:00
README.adoc Update README 2021-11-19 10:55:43 +01: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 the ykman CLI. This can
either be built locally (see the next section), or manually downloaded and
placed in `build/<os>/ykman/`. Builds are available for download from GitHub
Actions in the `yubikey-manager` project.


=== Building the ykman CLI locally
Requirements: Python >= 3.6 and Poetry.

The GUI requires a compiled version of the ykman CLI to run, which is build
using pyinstaller from the yubikey-manager submodule in this repository. The
`build-ykman.sh` (`build-ykman.bat` on Windows) script in this repository will
take care of this, producing a build in `build/<os>/ykman` which will then be
included in the main GUI. See the `yubikey-manager` project documentation for
any build requirements needed in this step.

For faster development when making modifications to the CLI, you can skip the
re-compilation step and instead set the `_YKMAN_PATH` environment variable to
the location of a `ykman` executable to run:

  _YKMAN_PATH="/path/to/ykman.exe" flutter run -d windows


=== 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].