SShortSingh.
Back to feed

KeyStack App Stores Dev Secrets in macOS Keychain, Ditching Plain-Text .env Files

0
·2 views

A solo developer has built KeyStack, a native macOS app designed to replace plain-text .env files by storing environment variables directly in the system Keychain, which is encrypted at rest and protected by Touch ID. The app organises secrets by project and environment, supports importing from existing .env files, and offers a side-by-side diff view to spot missing variables across environments. It also includes rotation reminders with configurable intervals and badge alerts to help developers stay on schedule. KeyStack operates entirely offline with no account, no cloud sync, and no network requests, meaning secrets never leave the user's machine. The tool is intentionally single-user and macOS-only, positioning itself as a local-first alternative to team-oriented secrets managers like Doppler or Infisical.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingHacker News ·

Researcher Develops Improved Classifier to Detect AI-Generated Code Comments

A developer has published work on a more accurate method for identifying AI-generated comments in source code. The approach aims to improve upon existing detection techniques for distinguishing human-written from AI-produced code annotations. The details are outlined in a technical write-up hosted on the author's blog, entropicthoughts.com. The post has garnered minimal engagement so far, with only a few points and no comments on Hacker News.

0
ProgrammingHacker News ·

Planet Labs Opens Satellite Imagery Feed to the Public

Planet Labs has made an open satellite data feed available for public access, as highlighted in a technical writeup by Mark's Blog. The feed allows users to access satellite imagery without requiring proprietary credentials or paid subscriptions. The article details the technical aspects of connecting to and using the feed programmatically. This development is notable for researchers, developers, and open-data enthusiasts who rely on Earth observation data. The post was shared on Hacker News, drawing attention to Planet Labs' open data initiative.

0
ProgrammingDEV Community ·

WebForms Core 2.1 Now Supports Go for Server-Driven Web UI Development

WebForms Core 2.1, developed by Elanat and led by Mohammad Rabie, is a server-centric web framework that lets backend code generate UI commands executed in the browser by WebFormsJS. The technology is now available for the Go programming language via a dedicated module at github.com/webforms-core/go. In this architecture, the Go backend acts as a commander that produces HTML and UI commands, while WebFormsJS handles all DOM manipulation on the client side. Developers can bind JSON data to HTML templates on the server without relying on frontend frameworks such as React or Vue. Because WebFormsJS is decoupled from the backend language, the same client-side library can be used with other server-side languages beyond Go.

0
ProgrammingDEV Community ·

Developer builds and tests full-stack apps entirely from a smartphone using cloud tools

A software developer has shared a workflow for building and testing a full-stack video automation project called Replex using only a smartphone and GitHub Codespaces. The setup runs Redis and MongoDB via Docker, while the Next.js frontend, Express API, and a BullMQ worker with headless Chromium operate as detached GNU screen sessions in the cloud. To conserve limited Codespaces compute time, lightweight tasks like editing and linting are handled locally on the phone before changes are pushed and pulled into the cloud environment. GitHub CLI port forwarding bridges the cloud container to the phone's browser, allowing live interaction with the running application. The workflow demonstrates that modern cloud development tools can replace a traditional high-powered workstation for complex, multi-service projects.