Skip to content
bitzorcas
EN

Guide

Overview

Deployment guide — Aspire orchestration for local development, container deployment for production, and CI/CD configuration.

Last updated

BitzOrcas supports multiple deployment targets, from local development with Aspire orchestration to container-based production deployments.

Deployment targets

TargetStatusUse case
Aspire AppHost✅ ImplementedLocal development
Docker containers✅ ImplementedProduction
Kubernetes📋 PlannedLarge-scale production
AWS Terraform📋 PlannedCloud deployment
CI/CD📋 PlannedAutomated pipelines

Infrastructure requirements

ServiceLocalProduction
SQL ServerDockerManaged (Azure SQL / RDS)
RabbitMQDockerManaged (CloudAMQP / Azure Service Bus)
.NET 10 RuntimeSDKContainer image

Quick deploy (Docker)

Terminal window
# Start infrastructure
docker compose up -d
# Initialize schema
dotnet run --project src/Hosts/BitzOrcas.Api -- --init-schema --seed-demo
# Run the application
dotnet run --project src/Hosts/BitzOrcas.AppHost

See also