Skip to content

liamh101/phoenix-auth

Repository files navigation

Phoenix Auth

A free Open Source desktop 2FA Application.

Features

  • 6/8 Digit Support
  • 30/60/90/120 Token Refresh Rate
  • SHA1/SHA256/SHA512 Algorithm
  • WA import support
  • Linux, Mac and Windows Support
  • Dark Mode
  • External Account Backups and Syncing

Roadmap

  • Account Colour Picker
  • Folder Organisation
  • Additional Import Support
  • Mobile Support

Note to Linux Users

Due to Tauri using SSL v1 on older builds of Ubuntu, I've decided to build the linux release using Ubuntu 22.04, using SSL v3. I cannot guarantee full compatibility on older versions of Linux with this build, however custom builds should work. Just be aware of security concerns with SSLv1.

Contribution

Tools

Recommended IDE Setups

Type Support For .vue Imports in TS

Since TypeScript cannot handle type information for .vue imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue imports (for example to get props validation when using manual h(...) calls), you can enable Volar's Take Over mode by following these steps:

  1. Run Extensions: Show Built-in Extensions from VS Code's command palette, look for TypeScript and JavaScript Language Features, then right click and select Disable (Workspace). By default, Take Over mode will enable itself if the default TypeScript extension is disabled.
  2. Reload the VS Code window by running Developer: Reload Window from the command palette.

You can learn more about Take Over mode here.

Tests

Frontend npm run test

Backend in src-tauri directory cargo test -- --test-threads=1 limited to a single thread due to database tests.