3 ms·
I'm also interested in learning about why the API keys are required to build.
by hahajk 1y ago
I'm also interested in learning about why the API keys are required to build.
- yujonglee 1y agoThere are only 2 api keys that is required to build (POSTHOG, SENTRY), and also not required to build in dev, only in release build. I made it required to prevent accidentally ship app without any analytics/error tracking. (analytics can be opted out) For ex, https://github.com/fastrepl/hyprnote/blob/327ef376c1091d093c73181325513811a8b4ca82/apps/desktop/src-tauri/src/lib.rs#L30-L40 https://github.com/fastrepl/hyprnote/blob/327ef376c1091d093c... EDIT: Prod -> release
- vanschelven 1y agoYou might want to reconsider ”no data ever leaves your machine" from the post :) Given your target market, have you considered looking at Bugsink?[0] sentry compatible. still not local, but at least you won't have to additionally ask your customers to trust sentry/posthog. Disclosure: that's me [0] https://www.bugsink.com/ https://www.bugsink.com/
- yujonglee 1y agoBugsink looks interesting. Will take a look.