SShortSingh.
Back to feed

Developer Seeks Advice Before First Go and React App Deployment

0
·13 views

A developer is preparing to deploy their first full-stack application built with Go, Gin, JWT authentication, PostgreSQL on Neon.tech, and Cloudinary for image uploads. The post was written before the deployment was actually initiated, serving as a form of personal accountability. The developer anticipates common issues such as CORS misconfiguration and environment variable errors. They are considering using Railway for the backend and Vercel for the frontend, but are open to alternative deployment strategies. The developer reached out to the community for advice based on real-world experience with similar tech stacks.

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
ProgrammingDEV Community ·

Developer Builds Offline Markdown-to-PDF App After Years of Google Docs Frustration

A developer grew frustrated spending 30 minutes every week reformatting project status reports in Google Docs before building their own solution. The result is PaperQuire, a desktop application that converts Markdown files into professionally formatted PDFs using pre-set templates. The app features a live split-pane preview, Mermaid diagram rendering, and one-click export to PDF, Word, HTML, and Confluence. It runs entirely offline using Chromium's built-in print engine, meaning documents never leave the user's machine. PaperQuire also includes a CLI tool for batch processing and integration with scripts and CI/CD pipelines.

0
ProgrammingDEV Community ·

PaperQuire Workflow Turns Rough Markdown Notes into Client PDF in 10 Minutes

PaperQuire, a document creation tool, enables users to go from raw bullet-point notes to a polished, client-ready PDF in approximately ten minutes. The workflow involves typing unformatted content into the editor, then using a built-in AI Assist feature to rewrite it as a professional document based on a custom prompt. Users can further enhance the output by adding Markdown tables, Mermaid diagrams, and callout blocks without leaving the editor. Final formatting is handled by selecting a corporate template and applying custom branding before exporting to PDF. The process is positioned as a practical, everyday alternative to lengthy manual document formatting.

0
ProgrammingDEV Community ·

Didit launches AI copilot that operates its business console via natural language

Didit has shipped an AI agent called Didit Copilot, embedded directly inside its Business Console dashboard used for identity verification and KYC/AML management. Users can type natural language requests in a chat panel, and the agent performs actions within the console in real time, such as querying data, applying filters, and building verification workflows. The architecture relies on three tool families: backend MCP server tools for business data, browser-based WebMCP tools that expose UI actions the user can watch live, and a DOM fallback for anything not explicitly registered. The agent always operates within the signed-in user's own permissions, ensuring it cannot access data beyond what the user is authorised to see. The underlying open-source library, gui-agent, implements an emerging W3C WebMCP draft, allowing app components to register and unregister their actions as agent-callable tools dynamically.

0
ProgrammingDEV Community ·

Karpenter Offers Pod-Level Node Autoscaling for EKS, Replacing Static Node Groups

Karpenter is an open-source autoscaler for Amazon EKS that provisions EC2 nodes based on the actual resource needs of pending pods, rather than relying on pre-configured node groups. Unlike the traditional Cluster Autoscaler, which operates at the node-group level, Karpenter evaluates individual unschedulable pods and launches appropriately sized instances in real time. The tool is configured through two primary Kubernetes resources: NodePool, which defines scheduling and disruption policies, and EC2NodeClass, which handles AWS-specific infrastructure details such as subnets, AMI family, and IAM roles. This separation allows a single EC2NodeClass to support multiple NodePools, each serving different workload types or capacity strategies, including mixed Spot and on-demand configurations. Karpenter is particularly suited to clusters with variable or heterogeneous workloads, where static node group sizing tends to result in either wasted capacity or operational overhead.