-
I am trying to test locally the Updater functionality. I have my server running locally and I have this configuration for the updater: "updater": {
"active": true,
"endpoints": [
"http://localhost:8080/releases/{{target}}/{{current_version}}"
],
"dialog": true,
"pubkey": "YOUR_UPDATER_SIGNATURE_PUBKEY_HERE"
} I am using debugging to inspect the Network tab from the Tauri application and I don't see any |
Beta Was this translation helpful? Give feedback.
Answered by
elanzini
Dec 3, 2022
Replies: 1 comment
-
Nevermind, I wasn't specifying the right route in my local express server. app.get("/releases/", async (req, res) => {
// nothing here
}); to app.get("/releases/*", async (req, res) => {
// works
}); Apologies for the noise, I wasn't able to delete this discussion item. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
elanzini
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nevermind, I wasn't specifying the right route in my local express server.
Changed from:
to
Apologies for the noise, I wasn't able to delete this discussion item.