惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
D
Docker
WordPress大学
WordPress大学
罗磊的独立博客
J
Java Code Geeks
博客园 - 【当耐特】
博客园 - 司徒正美
雷峰网
雷峰网
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Part 13: Deployment Strategies - Orchestrating Vyshyvanka...
Nick · 2026-06-24 · via DEV Community

As we move from development to production, deployment complexity often becomes the biggest bottleneck. For Vyshyvanka, we chose .NET Aspire as our development orchestration framework and as the foundation for production-ready deployments. Today, we look at how Aspire simplifies running a multi-service workflow engine.

Why Aspire?

Traditional development setup means manually configuring your API, your Blazor frontend, your database, and ensuring they can discover each other. If one service's port changes, everything breaks. Aspire solves this by treating the entire application as a single, orchestrated 'app model'. This app model describes how your services relate to each other — what resources they need, what ports they share, and how they discover each other via service discovery.

Our AppHost

The Vyshyvanka.AppHost project defines our application topology in C#:

var builder = DistributedApplication.CreateBuilder(args);

// Check if PostgreSQL mode is enabled
var usePostgres = builder.Configuration["UsePostgres"]?
    .Equals("true", StringComparison.OrdinalIgnoreCase) == true;

IResourceBuilder<ProjectResource> api;

if (usePostgres)
{
    // Production: PostgreSQL with persistent volume
    var postgres = builder.AddPostgres("postgres")
        .WithDataVolume("vyshyvanka-postgres-data");
    var database = postgres.AddDatabase("vyshyvankadb");

    api = builder.AddProject<Projects.Vyshyvanka_Api>("api")
        .WithReference(database)
        .WaitFor(database);
}
else
{
    // Development: SQLite (no external dependencies)
    api = builder.AddProject<Projects.Vyshyvanka_Api>("api");
}

// Designer discovers API via service discovery
builder.AddProject<Projects.Vyshyvanka_Designer>("designer")
    .WithReference(api)
    .WaitFor(api);

builder.Build().Run();

This is actual production code from our repository. A few things to note:

  • Conditional infrastructure: The same AppHost supports both SQLite (for quick local dev) and PostgreSQL (for production-like environments). A single environment variable flips the switch.
  • Service discovery: The Designer automatically discovers the API endpoint — no hard-coded URLs in configuration files.
  • Dependency ordering: WaitFor ensures the API doesn't start until the database is ready, and the Designer doesn't start until the API is accepting requests.

Development Experience

Running the full stack locally is a single command:

dotnet run --project src/Vyshyvanka.AppHost

This starts:

  1. The PostgreSQL container (if configured) with a persistent data volume
  2. The API service with proper connection strings injected
  3. The Blazor WebAssembly Designer with API endpoint configured

The Aspire dashboard gives you a unified view of all services, their logs, and distributed traces — all without any additional configuration.

Service Defaults

The Vyshyvanka.ServiceDefaults project provides shared configuration that every service gets automatically:

  • Health checks — standardized readiness and liveness probes
  • OpenTelemetry — distributed tracing and metrics collection
  • Resilience — default HTTP client resilience policies
  • Service discovery — automatic endpoint resolution

Each service opts in with a single line: builder.AddServiceDefaults().

Containerization

Aspire is built on a container-first mindset. In development, it manages Docker containers for infrastructure (PostgreSQL). For production deployment, the same application model can generate deployment manifests for container orchestrators.

Because our application is already decomposed into well-defined services with explicit dependencies, the transition from local development to containerized production is straightforward:

  • The API and Designer are standard .NET web applications — they containerize with the default .NET SDK container support.
  • Database connection strings are injected via environment variables, whether running locally or in a container.
  • Service discovery works the same way in both environments.

Environment-Specific Configuration

We handle the dev/prod split cleanly through the AppHost configuration:

Environment Database Auth Provider Credential Storage
Development SQLite (file) Built-in (seeded users) Built-in (AES-256)
Staging PostgreSQL (container) Keycloak/Authentik Built-in (AES-256)
Production PostgreSQL (managed) OIDC provider Vault/OpenBao

The application code is identical across all environments. Only the infrastructure wiring changes.

Observability Built In

One of the biggest wins with Aspire is built-in observability. Through ServiceDefaults, every HTTP request, database query, and cross-service call is automatically traced with OpenTelemetry. When a workflow fails in production, you can trace the entire request path through the system using standard observability tools (Jaeger, Zipkin, Application Insights, etc.).

Deployment Consistency

The 'it works on my machine' problem is eliminated. With Aspire, your infrastructure is defined as code alongside your logic. The topology you test locally is the same topology that runs in production. You don't manage shell scripts to wire up services — you manage the C# model that defines your application architecture.

By using Aspire as our orchestration layer, we have drastically reduced the time it takes to go from a local feature to a testable deployment.

In the next part, we will discuss Part 14: Community and Ecosystem - Contributing to Vyshyvanka. Stay tuned!


Check out the project source code here: https://github.com/homolibere/Vyshyvanka