Blazing iconBlazing

Learn by doing. Explore production-ready examples from basic tasks to advanced distributed systems.

447 examples

Basic Task Execution

This example demonstrates how to create and execute distributed tasks using Blazing Flow. You'll learn how to: - Initialize a Blazing Flow application - Define steps and workflows - Execute workflows with `app.run()` or direct invocation - Wait for results with `.wait_result()` - Proper resource cleanup

Beginner10 min
#async#blazing-flow#distributed

Basic Workflow

Multi-step orchestration - the foundation of distributed workflows — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Beginner10 min
#multi-step#orchestration#python

Data Processing Step

Filter rows and transform fields in a single Blazing step — lightweight inline data processing without a pipeline.

Beginner5 min
#async#blazing-flow#distributed

Data Transformation Workflow

Multi-stage data pipeline with cleaning and normalization — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Beginner10 min
#distributed#pipeline#python

Hello World

This is the simplest possible Blazing Flow application. It demonstrates how to: - Create a basic Blazing app - Define a simple step and workflow - Publish to the execution engine - Execute and return a response

Beginner5 min
#async#blazing-flow#distributed

ML Inference Pipeline

Deploy ML models with Core infrastructure, orchestrate inference with Flow, and run predictions in Flow Sandbox — uses HTTPX.

Advanced30 min
#httpx#inference#multi-product

Multi-Branch Workflow

Parallel execution with asyncio.gather for concurrent processing — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate15 min
#asyncio#parallel#python

Parallel Execution

Learn how to execute multiple tasks in parallel to dramatically improve throughput. This example shows you how to: - Create batch tasks efficiently - Achieve 4-10x speedup with parallelization - Optimize for different workload sizes - Monitor concurrency levels

Intermediate15 min
#concurrency#distributed#parallel

Simple Step

The simplest possible Blazing Flow example - a single processing step — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Beginner5 min
#async#blazing-flow#distributed

Step with Math

Basic arithmetic operations in a distributed step — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Beginner5 min
#async#blazing-flow#distributed

API with Authentication

Protect endpoints with custom authentication (JWT, API keys, OAuth) — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#api-key#fastapi#jwt

Basic Calculator API

The simplest possible endpoint: expose a workflow as a public HTTP API Built with uvicorn on Blazing Flow's distributed worker infrastructure.

Beginner10 min
#api#python#rest

Batch Processing API

Process multiple items concurrently with result aggregation Built with uvicorn on Blazing Flow's distributed worker infrastructure.

Intermediate20 min
#batch#distributed#python

Error Handling in APIs

Proper error handling with custom error responses Built with uvicorn on Blazing Flow's distributed worker infrastructure.

Intermediate15 min
#distributed#error-handling#python

Multi-Step Data Pipeline API

Expose a multi-step workflow that processes data through several stages Built with uvicorn on Blazing Flow's distributed worker infrastructure.

Intermediate15 min
#multi-step#pipeline#python

Multiple Endpoints with Different Paths

Organize multiple endpoints with different paths and versions Built with FastAPI, uvicorn on Blazing Flow's distributed worker infrastructure.

Intermediate20 min
#api-design#fastapi#python

WebSocket Real-Time Updates

Enable WebSocket for real-time progress updates from long-running workflows — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced25 min
#fastapi#real-time#streaming

Aggregating Results

Fetch data from multiple sources and aggregate into summary statistics — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#blazing-flow#distributed#parallel

PyArrow DataFrames

Pass PyArrow Tables between steps — zero-copy columnar transfers with type-safe Arrow compute operations — uses Apache Arrow.

Intermediate15 min
#apache-arrow#arrow#distributed

CSV Import Pipeline

Download, parse, validate, and import CSV files from cloud storage — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced30 min
#blazing-flow#distributed#file-processing

ETL Pipeline

Complete Extract-Transform-Load pipeline for data warehousing — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced30 min
#data-warehouse#etl#pipeline

Event Processing Pipeline

Validate, enrich, and store incoming events with multi-step processing — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate25 min
#distributed#events#pipeline

Large DataFrame Processing with Arrow Flight

When processing DataFrames larger than 1MB, Blazing automatically uses Apache Arrow Flight for 3-5x faster data transfer. This example shows how to work with large datasets without any special configuration - the optimization happens automatically.

Intermediate15 min
#apache-arrow#apache-arrow-flight#arrow-flight

Map-Reduce Pattern

Distributed map-reduce for processing large datasets in chunks — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced30 min
#big-data#distributed#map-reduce

PDF Generation Workflow

Generate PDF documents from templates with data from multiple sources — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced35 min
#blazing-flow#distributed#file-processing

Retry Logic with Exponential Backoff

Handle transient failures with automatic retry and exponential backoff — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#distributed#error-handling#python

Timeout Handling

Prevent workflows from hanging with asyncio.wait_for timeouts — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate15 min
#asyncio#error-handling#python

Validation & Error Handling

Validate input data and handle errors gracefully in workflows — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#data-quality#distributed#error-handling

CPU vs I/O Optimization with Worker Types

Blazing automatically optimizes execution by using different worker pools. Use `step_type='BLOCKING'` for CPU-intensive work and default (NON_BLOCKING) for I/O-bound operations. This prevents CPU tasks from blocking async I/O operations — uses HTTPX, NumPy.

Intermediate20 min
#httpx#numpy#python

Fan-Out / Fan-In Pattern

Fetch data from multiple sources in parallel, then combine results — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced25 min
#fan-in#fan-out#parallel

Parallel Data Processing

Process multiple items concurrently with asyncio.gather — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#asyncio#batch#parallel

Rate-Limited API Calls

Control concurrency with asyncio.Semaphore for rate limiting — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced25 min
#api#concurrency#python

Cache Service

Implement a cache-aside pattern with Redis — check cache, compute on miss, store result, serve on hit.

Intermediate20 min
#blazing-flow#distributed#python

Connector Integration Patterns

This example demonstrates the connector pattern used in production Blazing applications. Connectors provide a standardized way to interact with external services (REST APIs, databases, etc.) with built-in features: - Connection pooling - Throttling and rate limiting - Authentication management - Health checks **Pattern:** 1. Define connector configurations 2. Create a service that receives connector_instances 3. Service methods use connectors to access external resources

Intermediate15 min
#connectors#distributed#python

Database Service

Connect to PostgreSQL and perform database operations with SQLAlchemy — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#blazing-flow#distributed#postgresql

Email Queue Processor

Drain an email queue in configurable batches using Redis LIST operations — rate-limited bulk sending.

Intermediate25 min
#batch#python#queue

Email Service

Send transactional emails via SMTP using a Blazing service — templating, retries, and delivery confirmation.

Intermediate20 min
#async#blazing-flow#distributed

GitHub Webhook Handler

Process GitHub webhooks with signature validation and event handling — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced30 min
#distributed#events#python

Multi-Channel Notification

Send notifications across email, SMS, and push channels simultaneously — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate25 min
#blazing-flow#distributed#multi-channel

REST API Service

Call external REST APIs with httpx and handle responses — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#api#httpx#python

Stripe Payment Webhook

Handle Stripe payment webhooks with signature verification — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced30 min
#blazing-flow#distributed#events

Batch Stock Processing

This example demonstrates batch processing patterns inspired by financial data pipelines. Process hundreds of stocks efficiently with: - Batch processing with configurable sizes - Throttling to respect API rate limits - Resilient error handling (partial failures don't stop the batch) - Progress tracking and reporting **Use Cases:** - Daily stock price updates - Portfolio rebalancing workflows - Market data synchronization - Financial indicator calculations

Advanced15 min
#batch#blazing-flow#distributed

Cleanup Expired Records

Batch delete expired database records on a schedule — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#batch#blazing-flow#distributed

Daily Report Generation

Scheduled job to generate and distribute daily reports via email — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate25 min
#async#blazing-flow#distributed

Event Stream Processor

Process event streams from Kafka in batches with aggregation — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Expert40 min
#events#kafka#real-time

Health Check Workflow

Monitor system health across database, cache, and external APIs — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Intermediate20 min
#distributed#health-check#monitoring

Modular Registration Pattern

This example demonstrates how to organize large Blazing applications using the modular registration pattern. Instead of defining all steps and workflows in a single file, you can split them into domain-specific modules. **Pattern:** ```python # In main.py: app = Blazing(...) register_trading_module(app) register_analytics_module(app) register_reporting_module(app) await app.publish() ``` **Benefits:** - Clean separation of concerns - Domain-driven design - Easy to test individual modules - Scalable codebase organization - Conditional feature registration

Advanced15 min
#blazing-flow#distributed#domain-driven

Sandbox: Async Service Calls

User code making concurrent service calls for performance — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Expert30 min
#async#python#sandbox

Sandbox: Basic User-Provided Transform

The simplest sandbox example: let users write transformation logic while your infrastructure stays protected — uses WebAssembly.

Intermediate15 min
#python#sandbox#security

Sandbox: Service Bridge with Database

Let user code process data while keeping database credentials safe — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced25 min
#python#sandbox#security

Sandbox: Multi-Tenant Data Processing

Safely run different tenants' code in isolated sandboxes — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Expert35 min
#isolation#multi-tenant#sandbox

Sandbox: Service Bridge with REST APIs

Let users integrate with external APIs while keeping API keys safe — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced25 min
#api#sandbox#security

Sandbox: Security Validation

Examples of malicious code that fails in the sandbox — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Advanced20 min
#distributed#python#sandbox

Sandboxed Step Execution

The `sandboxed=True` parameter runs your step in a WebAssembly sandbox with complete isolation. Perfect for executing user-provided code in multi-tenant platforms - the code has zero access to your infrastructure, network, or filesystem.

Intermediate15 min
#python#sandbox#security

Trading Strategy Sandbox

This example shows how to build a trading strategy platform with two sides: **YOUR SIDE (Platform Owner):** - Define services your users can access (MarketDataService) - Define a workflow that uses run_sandboxed() to execute user code - Register with Blazing and publish **YOUR USER'S SIDE (End Users):** - Write strategy functions using your services - Submit code as a string - Get results back safely **Security Model (5 Layers - ALL HANDLED BY run_sandboxed()):** 1. AST validation - blocks dangerous imports/builtins 2. Cryptographic signing - HMAC-SHA256 prevents tampering 3. Signature verification - server validates before execution 4. Bytecode validation - blocks dangerous opcodes 5. Pyodide WASM sandbox - no network/filesystem access

Advanced20 min
#dynamic-code#pyodide#python

API Execution Patterns

Demonstrates three equivalent patterns for invoking workflows and retrieving results: wait_result() one-liner, handle.result() for deferred fetch, and run() by name for string-based dispatch.

Intermediate10 min
#distributed#python#remote-handle

Batched Steps

Use @batched to auto-collect individual step calls into GPU-efficient batches — transparent to callers.

Intermediate10 min
#blazing-flow#distributed#gpu

Callable Workflows

Shows how registered workflows become callable attributes on the app object, enabling natural invocation syntax like app.my_workflow(x=10).wait_result() without string-based dispatch.

Beginner5 min
#async#blazing-flow#distributed

Decorators and Context Manager

Demonstrates how to register steps, workflows, and services using decorators, then use the async context manager (async with app:) to cleanly manage service lifecycle and cleanup.

Beginner8 min
#blazing-flow#context-manager#distributed

Direct Function Call

Call @app.step and @app.workflow decorated functions as plain Python — no backend, no publish(), no infrastructure required. The recommended pattern for unit testing and local development.

Intermediate10 min
#blazing-flow#distributed#function-call

run_sync by Name

Demonstrates the synchronous API for running workflows by name — app.publish_sync() and app.run_sync('workflow_name', **kwargs) — for use in non-async calling contexts.

Intermediate6 min
#async#blazing-flow#distributed

SyncBlazing Quickstart

Demonstrates SyncBlazing — the fully synchronous Blazing client — for workflows that must run without any async/await in the calling code, such as scripts and synchronous web frameworks.

Beginner6 min
#async#blazing-flow#distributed

wait_result_sync Helper

Shows how to use wait_result_sync() on a workflow execution handle for blocking result retrieval in synchronous contexts — useful when mixing sync and async code in the same application.

Intermediate6 min
#async#blazing-flow#distributed

Workflow Handle wait()/cancel()

Demonstrates handle lifecycle methods: handle.wait() to block until completion, handle.wait_result() to retrieve the return value, and handle.cancel() to abort an in-flight workflow execution.

Intermediate7 min
#async#blazing-flow#distributed

Workflow Version Pins

Shows how to pin specific service versions when registering a workflow using the version_pins parameter, ensuring stable deployments by preventing automatic service upgrades from affecting a workflow.

Intermediate6 min
#async#blazing-flow#distributed

Depth Across Boundaries

Demonstrates a sandboxed step calling a trusted service in the same workflow — a cross-boundary pattern where Pyodide-isolated code accesses a trusted service via the services= injection mechanism.

Advanced12 min
#blazing-flow#distributed#pyodide

Depth Metrics API

Shows how to query the GET /v1/metrics/depth HTTP endpoint after running a workflow to retrieve operations_scanned and other depth statistics for monitoring step execution depth — uses HTTPX.

Advanced12 min
#http#httpx#metrics

Depth Statistics Metrics

Demonstrates querying depth statistics (max_depth, avg_depth, depth_distribution) from the Blazing metrics API after running workflows to understand step nesting patterns — uses HTTPX.

Advanced12 min
#distributed#httpx#metrics

Depth Tracking Basics

Creates a simple parent workflow calling a single child step to demonstrate Blazing's depth tracking — how the system records parent-child relationships between workflow and step executions.

Beginner6 min
#async#blazing-flow#distributed

Depth Tracking Chain

Builds a chain of three steps where each calls the previous (step_c → step_b → step_a) to demonstrate how Blazing tracks and records multi-level step depth across a call chain.

Intermediate8 min
#async#blazing-flow#distributed

Mixed Executor Routing

Routes trusted and sandboxed steps to different executors within one workflow — trusted NON-BLOCKING steps run in the main executor while sandboxed NON-BLOCKING steps run in Pyodide isolation.

Advanced12 min
#distributed#executor-routing#pyodide

Mixed Load Profile

Blends a CPU-bound BLOCKING step and an async I/O-bound step in a single workflow using asyncio.gather, demonstrating how Blazing routes different load profiles to appropriate executor pools.

Advanced12 min
#asyncio#mixed-load#parallel

State Machine Loop

Implements a workflow-driven state machine using a while loop — each iteration calls a step that advances the state until a terminal condition is reached, demonstrating looping patterns in Blazing.

Advanced12 min
#distributed#loop#python

Worker Type Isolation

Demonstrates behavior differences between trusted and sandboxed NON-BLOCKING workers by running the same input through both and comparing results — trusted steps run in the main process, sandboxed in Pyodide.

Advanced12 min
#isolation#pyodide#python

Worker Types Overview

Runs all four worker type combinations — trusted BLOCKING, trusted NON-BLOCKING, sandboxed BLOCKING, and sandboxed NON-BLOCKING — in one workflow to demonstrate how step_type and sandboxed flags control executor routing.

Intermediate10 min
#blazing-flow#distributed#python

Worker Types with Services

One workflow, four worker types — trusted sync (BLOCKING), trusted async (NON_BLOCKING), and two sandboxed async (NON_BLOCKING_SANDBOXED) steps all calling the same MathOpsService, demonstrating that services['Name'] works identically across all executors.

Intermediate12 min
#blazing-flow#distributed#python

Dynamic Code Execution (Sandboxed)

Executes a user-submitted expression string inside a sandboxed step with restricted builtins, demonstrating how to safely evaluate dynamic code while preventing access to dangerous Python built-in functions.

Advanced10 min
#blazing-flow#distributed#dynamic-code

Dynamic Code Security

Execute user-submitted functions through a 5-layer security pipeline: AST validation, HMAC signing, signature verification, bytecode inspection, and Pyodide sandbox isolation.

Advanced15 min
#code-execution#pyodide#sandbox

Egress Policy

Declare outbound network rules on services — exact hostnames, wildcard subdomains, CIDR blocks, or deny-all — uses HTTPX.

Advanced15 min
#egress#httpx#python

Isolated Execution

Runs a compute step inside the Pyodide WASM sandbox using @app.step(sandboxed=True), isolating the workload from the main executor process while still returning results to the workflow.

Intermediate8 min
#distributed#isolation#pyodide

Isolated Execution with Retry

Demonstrates retry logic around sandboxed workloads using a try/except loop — if the sandboxed step raises an exception, the workflow waits and retries up to three times before propagating the error.

Advanced10 min
#distributed#isolation#python

Pyodide Sandbox Dependencies

Shows how to install extra Python packages into the Pyodide sandbox using the sandbox_dependencies=['numpy'] parameter, making them available inside sandboxed steps without exposing them to trusted workers.

Intermediate10 min
#distributed#numpy#pyodide

Pyodide Parallel Stress

Fires five sandboxed compute tasks simultaneously using asyncio.gather to stress the Pyodide sandbox executor, demonstrating concurrent sandbox execution and verifying that all tasks complete correctly under parallel load.

Advanced12 min
#distributed#parallel#pyodide

Sandboxed Step Basics

The simplest sandboxed step example: marks a step with @app.step(sandboxed=True) to run it in Pyodide WASM isolation, demonstrating the minimal configuration needed for sandbox execution.

Intermediate8 min
#distributed#isolation#pyodide

API Key Middleware

Protect Blazing endpoints with a FastAPI middleware API key check. Source: greenfield

Intermediate12 min
#auth#fastapi#python

ASGI Server Integration

Integrates a Blazing workflow into an ASGI server using create_asgi_app() and uvicorn.run(), exposing a /hello endpoint backed by a registered workflow for direct HTTP access.

Intermediate10 min
#blazing-flow#distributed#python

Custom Exception Handler

Attach a custom exception handler to the ASGI app. Source: greenfield Built with FastAPI, uvicorn on Blazing Flow's distributed worker infrastructure.

Intermediate10 min
#distributed#fastapi#python

Framework Endpoints (ASGI)

Creates an ASGI app from a Blazing workflow using @app.endpoint() and create_asgi_app(), making the workflow directly callable via HTTP through FastAPI or any Starlette-compatible ASGI server.

Intermediate8 min
#distributed#fastapi#python

GET Endpoint with Query Params

Exposes a GET endpoint using @app.endpoint(path='/greet', method='GET') that reads URL query parameters and returns a greeting — demonstrates query param binding for Blazing HTTP endpoints — uses FastAPI, uvicorn.

Beginner6 min
#fastapi#http#python

Mount Blazing in FastAPI

Mounts the Blazing ASGI sub-application at a /blazing path prefix inside a larger FastAPI app using api.mount(), allowing Blazing workflows and custom FastAPI routes to coexist in one server process.

Intermediate10 min
#distributed#fastapi#python

Multiple HTTP Methods

Exposes both GET and POST endpoints in a single Blazing app — a GET /status endpoint for health checks and a POST /echo endpoint for request mirroring, demonstrating multi-method endpoint registration — uses uvicorn.

Intermediate8 min
#distributed#http#python

Real HTTP Endpoints

Exposes a Blazing workflow as a real HTTP endpoint using @app.endpoint() and create_asgi_app(), serving live HTTP requests via uvicorn — the foundation for production API deployment.

Intermediate10 min
#fastapi#http#python

Streaming Progress Bar

Use progress_bar to emit SSE updates while iterating. Source: greenfield Built with uvicorn on Blazing Flow's distributed worker infrastructure.

Intermediate10 min
#progress-bar#python#streaming

Streaming Sidecar Route

Serve a streaming FastAPI route alongside Blazing endpoints. Source: greenfield

Intermediate10 min
#fastapi#python#streaming

Streaming Workflow Progress

Stream progress updates from a workflow using SSE response_mode="stream". Source: greenfield — uses uvicorn.

Intermediate10 min
#distributed#python#streaming

Cron & Periodic Scheduler

Register scheduled jobs with SchedulerConnector using cron expressions or fixed intervals.

Intermediate10 min
#blazing-flow#distributed#python

Distributed Dict & Queue

Share state and pass messages between service instances with DictConnector (key-value store) and QueueConnector (async FIFO queue) — coordinating workers across deployments and tenants.

Intermediate10 min
#blazing-flow#distributed#python

OpenAI LLM Connector

Use OpenAIConnector in services for chat, streaming, tool calling, and multi-turn conversations.

Intermediate15 min
#distributed#openai#python

Local Dict Connector

Uses LocalDictService to persist workflow state in an in-memory key-value store without external dependencies — ideal for local development and testing patterns that will use Redis in production.

Intermediate10 min
#blazing-flow#distributed#python

Local Multiple Services

Registers two services (MathService and StringService) in a single workflow step, demonstrating how a step accesses multiple services via the services= dict injection and chains their results.

Intermediate10 min
#async#blazing-flow#distributed

Local Service Multistep

Runs a two-step pipeline where compute_sum aggregates a list using MathService.add() and compute_product scales the result using MathService.multiply(), demonstrating multi-step service reuse.

Intermediate10 min
#async#blazing-flow#distributed

Publish with Retry

Wraps app.publish() with exponential backoff retry logic for HTTP 429 (rate limited) responses, demonstrating a resilience pattern for publishing workflows in environments with rate-limited control planes — uses HTTPX.

Intermediate8 min
#distributed#httpx#python

Redis Completion Polling

Connects to a Blazing control plane via BLAZING_API_URL and BLAZING_API_TOKEN environment variables, demonstrating how to configure and authenticate with a remote Blazing deployment using Redis-backed completion tracking.

Advanced12 min
#blazing-flow#distributed#python

Remote Control Plane Connection

Connects to a remote Blazing API by passing api_url and api_token to the Blazing constructor, sourced from BLAZING_API_URL and BLAZING_API_TOKEN environment variables for secure credential management.

Beginner5 min
#api-url#auth#distributed

Service Composition Pipeline

Composes MathService and StringService in a single step to build a two-stage pipeline: compute a product then format it as a labeled string — demonstrates service chaining for multi-step data transformation.

Intermediate12 min
#async#blazing-flow#distributed

Volume File Storage

Persist files across workflow executions with Volume.persisted() and VolumeConnector inside services.

Intermediate15 min
#blazing-flow#distributed#python

Agent Checkpointing Service

Demonstrates agent-style fault tolerance using a CheckpointService that persists intermediate step results (step_one and step_two outputs) in an in-memory store, enabling recovery from partial workflow failures.

Intermediate12 min
#async#blazing-flow#distributed

DeepAgents with BlazeCheckpointer

Run a deepagents (LangGraph-based) agent inside the Pyodide sandbox with multi-turn state persistence via BlazeCheckpointer — build and upload a custom wheel, then use thread_id to resume sessions across independent invocations.

Expert30 min
#checkpoint#deepagents#httpx

GPU Matrix Multiplication

Runs a 512x512 PyTorch matrix multiplication on the available accelerator (CUDA, MPS, or CPU) by declaring @app.step(gpu='A100'), demonstrating how to route steps to GPU worker pools.

Advanced15 min
#distributed#gpu#python

GPU PyTorch Steps — A100 + H100 Pipeline

Chain an A100 matrix multiplication step and an H100 neural network inference step in a single workflow — Blazing routes each step to the matching GPU worker type; in local dev both fall back to Metal (MPS) on Apple Silicon or CUDA on NVIDIA — uses PyTorch.

Advanced20 min
#gpu#neural-network#pipeline

GSD Tool Registry in Pyodide Sandbox

Pass structured GSD-style tool definitions as plain dicts into a Pyodide sandbox and execute list and filter-by-tag operations — demonstrating data-driven tool management without importing the full GSD framework into the sandboxed environment.

Expert25 min
#deepagents#dynamic-code#httpx

LangBlaze LLM Service

Run LangChain LCEL chains, multi-turn chat, and tool calling from sandboxed Pyodide steps — LLMService on trusted workers proxies API keys so the sandbox never sees them.

Advanced20 min
#langblaze#langchain#langgraph

ReAct Agent as Dynamic Code

Run a complete LangGraph-style ReAct agent loop as user-submitted dynamic code in the Pyodide sandbox — LLM and tool calls route through trusted-worker services while the agent loop itself runs as signed sandbox code.

Advanced25 min
#dynamic-code#langblaze#langgraph

Sandbox Dependencies for Agents

Installs langchain-core into the Pyodide sandbox via sandbox_dependencies=['langchain-core'], demonstrating how to provide agent framework libraries to sandboxed steps for LangGraph-style agent workflows.

Advanced12 min
#langchain#langgraph#pyodide

Build a Wheel for Sandbox

Builds a Python wheel from the current package directory using blazing.wheel_builder.build_wheel(), producing a .whl file that can be uploaded as a sandbox dependency for Pyodide-sandboxed steps.

Advanced10 min
#blazing-flow#distributed#pyodide

Custom Image Workflow

Runs a workflow using a custom container image built with Image.debian_slim(python_version='3.11').pip_install('numpy'), demonstrating how to attach a custom Docker image to a specific workflow via @app.workflow(image=image).

Intermediate10 min
#distributed#docker#numpy

Dockerfile Image

Uses Image.from_dockerfile(path, context) to build a custom workflow image from a Dockerfile in the current directory, enabling full control over the executor environment through standard Docker tooling.

Advanced12 min
#blazing-flow#distributed#docker

Executor Base Image

Builds a custom executor image from Image.executor() using method chaining: .apt_install('curl') for system packages, .pip_install('numpy') for Python packages, and .env(APP_ENV='prod') for environment variables.

Intermediate12 min
#blazing-flow#distributed#numpy

Image Environment Variables

Injects environment variables into a custom executor image using Image.executor().env(FOO='bar'), making them available to all steps running in that image via os.getenv() without runtime configuration.

Intermediate8 min
#async#blazing-flow#distributed

Image with Run Commands

Bakes assets and directory structure into a custom executor image using Image.executor().run_commands(...), executing shell commands at image build time so steps find pre-created files at runtime.

Intermediate10 min
#blazing-flow#distributed#python

Model Cache in Image

Bake model artifacts into an image and load them at runtime. Source: greenfield

Advanced12 min
#blazing-flow#distributed#model-cache

Multiple Images in One App

Use different container images for different workflows. Source: greenfield Built with NumPy on Blazing Flow's distributed worker infrastructure.

Advanced12 min
#distributed#multi-image#numpy

Secrets via Environment

Read secrets from environment variables at runtime. Source: greenfield — demonstrates Blazing Flow's distributed step execution model with typed inputs and structured outputs.

Beginner6 min
#blazing-flow#distributed#python

Serialize Loading Strategy

Use loading_strategy='serialize' to skip wheel builds — fastest iteration mode for local development.

Intermediate10 min
#blazing-flow#distributed#loading-strategy

Hacker News Slackbot

Fetch top Hacker News stories on a schedule and post filtered results to Slack — demonstrates scheduled workflows, concurrent HTTP requests with asyncio.Semaphore, and SlackConnector egress control — uses HTTPX.

Advanced20 min
#distributed#http#httpx

SQL Explorer

Ad-hoc SQL analytics over SQLite, CSV, and Parquet via HTTP endpoints backed by DuckDB — read-only mode with SQL injection protection and 30-second query timeouts.

Advanced20 min
#api#distributed#duckdb

RAG PDF Chatbot

Retrieval-augmented generation over PDF documents — extract text with pdfplumber, chunk with overlap, embed with OpenAI, store in ChromaDB, and answer questions with GPT-4o-mini.

Advanced20 min
#chromadb#openai#pdfplumber

OCR Job Queue

Asynchronous OCR pipeline with UUID-based job IDs, Redis state persistence, and OpenAI Vision API — demonstrates the submit-poll pattern with a pending/processing/completed state machine.

Advanced20 min
#job-queue#ocr#openai

Docsearch Crawler

BFS documentation crawler that respects robots.txt, extracts text with trafilatura, and batch-indexes content to Algolia with SHA256-based object IDs.

Advanced20 min
#beautiful-soup#httpx#python

Google Sheets to MongoDB Sync

Bidirectional sync between Google Sheets and MongoDB with last-write-wins conflict resolution — demonstrates timestamp-based conflict handling and idempotent upserts.

Advanced20 min
#blazing-flow#distributed#google-sheets

Document Embedding Pipeline

High-throughput document embedding pipeline — S3 batch download, tiktoken chunking with overlap, sentence-transformers or OpenAI embeddings, MongoDB vector storage, and checkpoint/resume for fault tolerance.

Advanced20 min
#aws-s3#batch#checkpoint

Satellite Image Vectors

Geospatial ML pipeline — read GeoTIFF with rasterio, extract 256x256 tiles, generate Clay or sentence-transformer embeddings, and index with MongoDB 2dsphere for geospatial search.

Advanced20 min
#hugging-face-transformers#numpy#pytorch

Order Processing State Machine

State machine where each transition runs as a sandboxed step calling a trusted OrderService — PENDING through PAYMENT_CHECK, INVENTORY_CHECK, APPROVED, and COMPLETED with rejection paths.

Advanced20 min
#python#sandbox#state-machine

Podcast Transcription

Parallel audio transcription pipeline using FFmpeg for chunking and OpenAI Whisper API — handles the 25MB file size limit automatically with asyncio.Semaphore throttling.

Advanced20 min
#ffmpeg#openai#pipeline

Coding Agent with BlazeFileSystem

A deepagents coding agent in the Pyodide sandbox performs real file I/O through BlazeFileSystem proxied to a trusted StorageService — init a git repo, write and verify Python files, then persist agent state via BlazeCheckpointer across workflow phases.

Expert35 min
#checkpoint#coding-agent#deepagents

Secrets Management with SecretsConnector

Store and retrieve encrypted secrets through trusted services — DatabaseService fetches DATABASE_URL and credentials; APIClientService fetches API_KEY and API_SECRET. Sandboxed steps cannot access secrets directly, enforcing the same security model as database connectors.

Intermediate15 min
#connectors#local-stack#secrets

Volume File Storage with VolumeConnector

Read and write files through a trusted FileProcessorService injected with VolumeConnector — sandboxed steps call service methods while only the trusted service has direct volume access, enforcing the connector security model.

Intermediate15 min
#connectors#local-stack#security

goosebin

goosebin deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

gpt4all

gpt4all deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

minio

minio deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

postgres-restore

postgres-restore deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

rainbowminer-c12

rainbowminer-c12 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

satisfactory-server

satisfactory-server deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

sovryn-node

sovryn-node deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

test

test deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

valheim

valheim deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#_uncategorized

Elizaos-ai_Agents

Elizaos-ai_Agents deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

Venice-ElizaOS

Venice-ElizaOS deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

agent-zero

agent-zero deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

alpaca-cpp

alpaca-cpp deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

auto-gpt

auto-gpt deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

babyagi

babyagi deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

babyagi-ui

babyagi-ui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

bark-small

bark-small deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

botpress

botpress deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

chatchat

chatchat deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

chromadb

chromadb deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

daila

daila deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

faster-whisper-cpu

faster-whisper-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

invoke-ai-cpu

invoke-ai-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

langflow

langflow deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

morpheus-lumerin-node

morpheus-lumerin-node deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

ollama-cpu

ollama-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

open-webui-cpu

open-webui-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

openclaw

openclaw deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

privategpt-cpu

privategpt-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

serge-cpu

serge-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

tgpt

tgpt deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

weaviate

weaviate deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

whisper-asr-cpu

whisper-asr-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

whisper-gui-cpu

whisper-gui-cpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cpu

AI-Image-App

AI-Image-App deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

AUTOMATIC1111

AUTOMATIC1111 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Ace-Music-AI

Ace-Music-AI deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

ChatGLM-6B

ChatGLM-6B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-Janus

DeepSeek-Janus deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1

DeepSeek-R1 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1-0528

DeepSeek-R1-0528 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1-Distill-Llama-70B

DeepSeek-R1-Distill-Llama-70B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1-Distill-Llama-8B

DeepSeek-R1-Distill-Llama-8B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1-Distill-Qwen-1.5B

DeepSeek-R1-Distill-Qwen-1.5B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1-Distill-Qwen-14B

DeepSeek-R1-Distill-Qwen-14B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1-Distill-Qwen-32B

DeepSeek-R1-Distill-Qwen-32B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-R1-Distill-Qwen-7B

DeepSeek-R1-Distill-Qwen-7B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

DeepSeek-V3.1

DeepSeek-V3.1 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

FLock-training-node

FLock-training-node deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

FLock-validator

FLock-validator deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Falcon-7B

Falcon-7B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

FastChat

FastChat deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Hermes-4-405B-FP8

Hermes-4-405B-FP8 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Kimi-K2-Thinking

Kimi-K2-Thinking deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-2-70B

Llama-2-70B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3-70B

Llama-3-70B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3-8B

Llama-3-8B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3-Groq-8B-Tool-Use

Llama-3-Groq-8B-Tool-Use deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.1-405B-AWQ-INT4

Llama-3.1-405B-AWQ-INT4 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.1-405B-BF16

Llama-3.1-405B-BF16 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.1-405B-FP8

Llama-3.1-405B-FP8 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.1-8B

Llama-3.1-8B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.2-11B-Vision-Instruct

Llama-3.2-11B-Vision-Instruct deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.2-3B

Llama-3.2-3B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.2-90B-Vision-Instruct

Llama-3.2-90B-Vision-Instruct deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3.3-70B

Llama-3.3-70B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-3_3-Nemotron-Super-49B-v1

Llama-3_3-Nemotron-Super-49B-v1 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-4-Maverick-17B-128E-Instruct-FP8

Llama-4-Maverick-17B-128E-Instruct-FP8 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Llama-4-Scout-17B-16E-Instruct

Llama-4-Scout-17B-16E-Instruct deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Mistral-7B

Mistral-7B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Pluralis-Node

Pluralis-Node deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

QwQ-32B

QwQ-32B deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Qwen3-235B-A22B-FP8

Qwen3-235B-A22B-FP8 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Qwen3-235B-A22B-Instruct-2507

Qwen3-235B-A22B-Instruct-2507 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Qwen3-235B-A22B-Instruct-2507-FP8

Qwen3-235B-A22B-Instruct-2507-FP8 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Qwen3-235B-A22B-Thinking-2507

Qwen3-235B-A22B-Thinking-2507 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Qwen3-235B-A22B-Thinking-2507-FP8

Qwen3-235B-A22B-Thinking-2507-FP8 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Qwen3-Coder-480B-A35B-Instruct

Qwen3-Coder-480B-A35B-Instruct deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

Qwen3-Next-80B-A3B-Instruct

Qwen3-Next-80B-A3B-Instruct deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

StableStudio

StableStudio deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

TTS

TTS deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

XLM-RoBERTa

XLM-RoBERTa deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

axolotlai

axolotlai deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

bert

bert deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

bert-sentiment-analysis

bert-sentiment-analysis deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

comfyui

comfyui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

dolly-v2-12b

dolly-v2-12b deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

dria

dria deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

faster-whisper-gpu

faster-whisper-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

flan-t5-xxl

flan-t5-xxl deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

gensyn-rl-swarm

gensyn-rl-swarm deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

gpt-neo

gpt-neo deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

gpustack

gpustack deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

gpustack-worker

gpustack-worker deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

grok

grok deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

invoke-ai-gpu

invoke-ai-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

llama-factory

llama-factory deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

ollama-gpu

ollama-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

open-gpt

open-gpt deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

open-webui-gpu

open-webui-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

openai-gpt-oss-120b

openai-gpt-oss-120b deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

privategpt-gpu

privategpt-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

redpajama-incite-7b-instruct

redpajama-incite-7b-instruct deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

semantra

semantra deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

serge-gpu

serge-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

stable-diffusion-ui

stable-diffusion-ui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

stable-diffusion-webui

stable-diffusion-webui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

text-generation-webui

text-generation-webui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

unsloth-ai

unsloth-ai deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

whisper-asr-gpu

whisper-asr-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

whisper-gui-gpu

whisper-gui-gpu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#gpu

fast

fast deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

fio

fio deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

geekbench

geekbench deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

iperf3

iperf3 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

librespeed

librespeed deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

monkeytest

monkeytest deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

openspeedtest

openspeedtest deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

persistent-storage-performance-testing

persistent-storage-performance-testing deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

phoronix

phoronix deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

serverbench

serverbench deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

speedtest-cli

speedtest-cli deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

speedtest-tracker

speedtest-tracker deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#benchmarking

Ethereum_2.0

Ethereum_2.0 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

Kadena

Kadena deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

avalanche

avalanche deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

bitcoin

bitcoin deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

bitcoin-knots-mempool-ui

bitcoin-knots-mempool-ui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

bitcoincashnode

bitcoincashnode deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

centrifuge

centrifuge deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

concordium

concordium deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

dcrpulse

dcrpulse deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

fuse-network-node

fuse-network-node deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

handshake

handshake deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

injective

injective deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

juno

juno deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

metal-validator

metal-validator deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

near

near deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

polkadot

polkadot deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

prysm-beacon

prysm-beacon deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

substrate-node

substrate-node deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

vidulum

vidulum deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

witnesschain-watchtower

witnesschain-watchtower deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

zcash-zcashd

zcash-zcashd deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

zcash-zebra

zcash-zebra deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blockchain

Grav

Grav deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

confluence

confluence deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

drupal

drupal deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

ghost

ghost deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

ghost-filebase-backup

ghost-filebase-backup deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

nitropage

nitropage deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

steemcn

steemcn deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

wikijs

wikijs deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

wordpress

wordpress deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#blogging

big-dipper

big-dipper deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#built

RAIR-Dapp

RAIR-Dapp deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#business

n8n

n8n deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#business

odoo

odoo deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#business

mattermost

mattermost deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#chat

status

status deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#chat

automatic-deployment-CICD-template

automatic-deployment-CICD-template deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

azure-devops-agent

azure-devops-agent deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

bitbucket

bitbucket deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

ghrunner

ghrunner deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

gitea

gitea deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

gogs

gogs deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

jenkins

jenkins deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

micro-services-example

micro-services-example deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

radicle

radicle deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#cicd

Redash

Redash deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#data

metabase

metabase deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#data

ufo-data-vis

ufo-data-vis deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#data

CockroachDB

CockroachDB deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

MySQL

MySQL deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

SurrealDB

SurrealDB deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

adminer

adminer deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

couchdb

couchdb deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

defradb

defradb deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

influxdb

influxdb deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

json-server

json-server deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

mongoDB

mongoDB deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

neo4j

neo4j deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

pgadmin4

pgadmin4 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

postgres

postgres deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

qdrant

qdrant deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

redis

redis deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

supabase

supabase deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#databases

codex

codex deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#decentralized

ipfs

ipfs deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#decentralized

Thorchain-BEPSwap

Thorchain-BEPSwap deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

Yearn.finance

Yearn.finance deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

balancer

balancer deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

bancor

bancor deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

curve

curve deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

osmosis-fe

osmosis-fe deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

pancake-swap

pancake-swap deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

renprotocol

renprotocol deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

sushiswap

sushiswap deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

synthetix.exchange

synthetix.exchange deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

uma-protocol

uma-protocol deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

uniswap

uniswap deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

yfii

yfii deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#defi

csgo

csgo deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#game

mordhau

mordhau deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#game

squad

squad deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#game

steamcmd

steamcmd deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#game

tf2

tf2 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#game

MemoryGame

MemoryGame deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

minecraft

minecraft deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

minesweeper

minesweeper deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

pacman

pacman deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

snake-game

snake-game deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

supermario

supermario deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

tetris

tetris deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

tetris2

tetris2 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#games

caddy

caddy deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#hosting

flame

flame deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#hosting

grafana

grafana deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#hosting

nginx-letsencrypt-proxy

nginx-letsencrypt-proxy deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#hosting

doccano

doccano deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#machine

jupyter

jupyter deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#machine

ray

ray deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#machine

tensorflow-jupyter-ezkl

tensorflow-jupyter-ezkl deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#machine

tensorflow-jupyter-mnist

tensorflow-jupyter-mnist deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#machine

tensorflow-serving-mnist

tensorflow-serving-mnist deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#machine

tensorflow-webapp-mnist

tensorflow-webapp-mnist deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#machine

freeflix-nucleus

freeflix-nucleus deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#media

chia-bladebit

chia-bladebit deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

chia-bladebit-disk

chia-bladebit-disk deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

chia-madmax

chia-madmax deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

honeygain

honeygain deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

iproyal-pawns

iproyal-pawns deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

iron-fish

iron-fish deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

moneroocean

moneroocean deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

packetstream

packetstream deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

pkt-miner

pkt-miner deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

rainbowminer

rainbowminer deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

raptoreum-miner

raptoreum-miner deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

traffmonetizer

traffmonetizer deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

xmrig

xmrig deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

bminer-c11

bminer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

bzminer-c11

bzminer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

cryptodredge-c11

cryptodredge-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

gminer-c11

gminer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

lolminer-c11

lolminer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

nanominer-c11

nanominer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

nbminer-c11

nbminer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

onezerominer-c11

onezerominer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

quai-gpu-miner

quai-gpu-miner deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

rainbowminer-c11

rainbowminer-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

rigel-c11

rigel-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

srbminer-multi-c11

srbminer-multi-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

t-rex-c11

t-rex-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

wildrig-multi-c11

wildrig-multi-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

xmrig-c11

xmrig-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

xmrig-moneroocean-c11

xmrig-moneroocean-c11 deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

kawpow-pool-meowcoin

kawpow-pool-meowcoin deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

kawpow-pool-neoxa

kawpow-pool-neoxa deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

kawpow-pool-ravencoin

kawpow-pool-ravencoin deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

monero-pool

monero-pool deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#mining

Sentinel-dVPN-node

Sentinel-dVPN-node deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#network

cjdns-pkt

cjdns-pkt deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#network

softether-vpn

softether-vpn deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#network

tor-proxy

tor-proxy deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#network

v2ray

v2ray deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#network

x-ui

x-ui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#network

lunie-lite

lunie-lite deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#official

ssh-ubuntu

ssh-ubuntu deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#official

qbittorrent

qbittorrent deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#peer

jira

jira deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#project

kanboard

kanboard deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#project

redmine

redmine deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#project

elasticsearch

elasticsearch deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#search

presearch

presearch deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#search

whoogle-search

whoogle-search deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#search

yacy

yacy deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#search

discourse

discourse deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#social

waku

waku deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#social

CodiMD

CodiMD deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

Periodic-Table-Creator

Periodic-Table-Creator deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

anubis

anubis deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

authsteem

authsteem deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

budibase

budibase deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

code-server

code-server deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

dart

dart deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

folding-at-home

folding-at-home deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

hashicorp-vault

hashicorp-vault deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

keycloak-iam

keycloak-iam deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

libretranslate

libretranslate deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

matomo

matomo deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

memos

memos deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

microbox

microbox deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

nextcloud

nextcloud deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

onetimepad

onetimepad deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

owncloud

owncloud deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

quill-editor

quill-editor deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

shiori

shiori deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

swagger-ui

swagger-ui deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

thirdweb

thirdweb deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

uptime-kuma

uptime-kuma deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

vaultwarden

vaultwarden deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

webtop

webtop deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

zammad

zammad deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#tools

jitsi-meet

jitsi-meet deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#video

MyEtherWallet

MyEtherWallet deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#wallet

tronwallet

tronwallet deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#wallet

gin

gin deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#web

nextjs

nextjs deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#web

react

react deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#web

ruby-on-rails

ruby-on-rails deployed on Akash Network via Blazing Core.

Intermediate5 min
#akash#blazing-core#web