You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,33 @@ See [this page](https://developer.chrome.com/extensions/nativeMessaging) for fur
7
7
keepassxc-proxy listens stdin from keepassxc-browser extension and transfers the data to Unix domain socket `XDG_RUNTIME_DIR` or `/tmp/org.keepassxc.KeePassXC.BrowserServer` which KeePassXC listens.
8
8
With Windows this is a named pipe under `org.keepassxc.KeePassXC.BrowserServer\<username>`.
9
9
10
+
11
+
## Building
12
+
13
+
The proxy can be built with:
14
+
15
+
```bash
16
+
cargo build --release
17
+
```
18
+
19
+
### Static library
20
+
21
+
To build a binary without dependencies (which is useful for running
22
+
inside of a flatpak), you'll have to install MUSL libc first:
0 commit comments