SShortSingh.
Back to feed

Dirora launches e-commerce platform with 68+ built-in features and no add-on fees

0
·1 views

A new e-commerce platform called Dirora has been built to address the high hidden costs merchants face on traditional hosted platforms, where features like reviews, loyalty programmes, and multi-currency support typically require expensive third-party app subscriptions. Dirora bundles over 68 features natively into every plan, including its free tier, so that capabilities are never gated behind paywalls — only usage limits such as product count and storage differ between plans. The platform is built on a multi-tenant architecture using Go, with more than 40 microservices organised along domain boundaries to keep the system scalable and isolated per merchant. Each store operates on its own subdomain or custom domain with automatic SSL, and cross-tenant data access is deliberately restricted by design. The founders say their core thesis is to reward merchant growth rather than penalise it, in direct contrast to the dominant industry model of a small core platform supplemented by a costly third-party app marketplace.

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 ·

Former Tech Executive Quits Job to Teach Kids Entrepreneurship Using AI Tools

A former Superlogic employee has left his corporate role to focus on teaching his children how to build real businesses using AI tools through a new venture called Senternet. Rather than training them to simply use AI prompts, his goal is to instill judgment, critical thinking, and end-to-end product development skills. The curriculum covers identifying real problems, testing assumptions, reviewing AI-generated work, and measuring outcomes after launch. He is also volunteering as CTO and COO at Bee Ready, a nonprofit focused on emergency preparedness, which will serve as a live, real-world project for his children to work on. He emphasizes that while AI can accelerate building, it does not replace the responsibility of the builder to evaluate what is created.

0
ProgrammingDEV Community ·

How to Build a Simple AI Agent Using the Model Context Protocol

The Model Context Protocol (MCP) allows developers to connect AI models like Claude to external tools, enabling them to fetch real data rather than generate guesses. A beginner-friendly tutorial published on DEV Community walks through building a weather-query AI agent using Python 3.11, the official MCP Python SDK, and Claude Desktop. The agent follows a structured request flow: a user query passes through Claude, an MCP client, and an MCP server before reaching a custom tool that returns structured data. Developers register Python functions as callable tools using the FastMCP library, and Claude autonomously decides when to invoke them based on user intent. The same architecture can be applied to a range of use cases, including coding assistants, customer support bots, and database query agents.

0
ProgrammingDEV Community ·

Tutorial: Send Transactional Emails via Mailgun API Using a Python CLI

A developer tutorial on DEV Community walks through building a small Python command-line tool that sends transactional emails using Mailgun's HTTP API, eliminating the need for a dedicated mail server. The CLI supports four actions: sending an email, listing sent messages, checking delivery status, and deleting a record. The project is structured across four files, with the core Mailgun logic handled in a dedicated client module and sent email data stored locally in a JSON file. The guide covers Mailgun account setup, sandbox domain restrictions, and secure credential management via environment variables. A key warning highlights that sandbox domains only deliver to pre-authorized recipients, and undelivered emails are silently accepted by the API — making the built-in status-check feature especially useful.

0
ProgrammingDEV Community ·

Enterprise or Startup AI API: How to Choose the Right Setup for Your Scale

A developer who built LLM pipelines at a fintech startup and later joined an API solutions team has outlined a practical framework for choosing between direct AI model providers and multi-vendor aggregators. The analysis found that routing through an aggregator versus signing a single-provider contract could reduce token costs by up to 97.5% at scale, a gap large enough to determine a product's unit economics. Early-stage teams are advised to prioritize simplicity — one API key, predictable per-token pricing, and easy model switching — rather than over-engineering for enterprise-grade SLAs they do not yet need. However, once monthly inference spending crosses roughly $5,000, the risk profile shifts significantly, as even a short regional outage can trigger seven-figure SLA penalties. The key takeaway is that the right choice depends almost entirely on a team's actual failure tolerance, which most organizations tend to underestimate.