u/Economy-Department47

▲ 10 r/SideProject+3 crossposts

Devly v2.0.0 - CLI for 50+ dev tools on macOS (Base64, JSON, hashing, UUID, etc.)

Just added CLI support to Devly.

brew install aarush67/tap/devlycli

devly base64 "Hello World"
cat data.json | devly jsonformat > pretty.json
echo "password" | devly hash
devly cron "0 9 * * 1-5"
echo "test" | devly base64 | devly hash

Full tool list: https://devly.techfixpro.net/docs/tools/

CLI docs: https://devly.techfixpro.net/docs/cli-usage/

Requires the Devly Mac App Store app, the CLI delegates all processing to it and runs it headless.

u/Economy-Department47 — 13 hours ago

I Made an app that handles the whole macOS DMG signing and notarization pipeline so you don't have to touch the terminal

If you've ever tried to distribute a Mac app outside the App Store you know how annoying this process is.

You need to code sign your app, build a DMG, sign the DMG, submit to Apple for notarization, wait for approval, then staple the ticket back onto the DMG. Miss any step and your users get a Gatekeeper warning or the app won't open at all.

All of that requires five separate command line tools with their own flags and their own cryptic error messages. It's not hard once you know it but it's tedious and unforgiving and nobody should have to relearn it every time they ship an update.

I built Packara to fix this. You drag your .app in, set up your signing identity and notarization profile once, and hit Build. It runs the whole pipeline in sequence with live log output at every stage so you always know what's happening. When it's done your signed notarized DMG is waiting in Finder.

Credentials stay in your macOS Keychain the whole time. Nothing gets written to disk or passed as a command line argument.

Free 7 day trial, $9.99 one time after that. No subscription.

https://packara.techfixpro.net

Happy to answer any questions about how it works.

u/Economy-Department47 — 10 days ago