{% extends "marketplace/layout.html" %} {% block title %}Project Mycelium - Overview{% endblock %} {% block marketplace_content %}

Project Mycelium Overview

Explore the decentralized ecosystem of resources, applications, and services.

Compute Resources

250+ available slices

Browse Resources →
3Nodes

120+ certified nodes

Browse Mycelium Nodes →
Gateways

45+ active gateways

Browse Gateways →
Applications

80+ self-healing apps

Browse Applications →

Featured Items

{% if featured_products is defined and featured_products | length > 0 %} {% for item in featured_products %}
{% set cat = 'other' %} {% if item.product is defined and item.product.category_id is defined %} {% set cat = item.product.category_id %} {% endif %} {{ cat }} {% if item.product is defined and item.product.metadata is defined and (item.product.metadata.featured | default(value=false)) %} Featured {% endif %}
{% set prod_name = 'Unnamed' %} {% set prod_desc = '' %} {% set provider_name = '' %} {% set prod_id = '' %} {% set category_id = '' %} {% set base_price = 0 %} {% set provider_id = '' %} {% if item.product is defined %} {% if item.product.name is defined %}{% set prod_name = item.product.name %}{% endif %} {% if item.product.description is defined %}{% set prod_desc = item.product.description %}{% endif %} {% if item.product.provider_name is defined %}{% set provider_name = item.product.provider_name %}{% endif %} {% if item.product.id is defined %}{% set prod_id = item.product.id %}{% endif %} {% if item.product.category_id is defined %}{% set category_id = item.product.category_id %}{% endif %} {% if item.product.base_price is defined %}{% set base_price = item.product.base_price %}{% endif %} {% if item.product.provider_id is defined %}{% set provider_id = item.product.provider_id %}{% endif %} {% endif %}

{{ prod_name }}

{{ prod_desc }}

{% if item.product is defined and item.product.attributes is defined and item.product.attributes | length > 0 %}
{% for attr_name, attr_value in item.product.attributes %} {% if attr_name == "cpu_cores" %}
{{ attr_value.value | default(value='') }} Cores
{% elif attr_name == "memory_gb" %}
{{ attr_value.value | default(value='') }} GB RAM
{% elif attr_name == "storage_gb" %}
{{ attr_value.value | default(value='') }} GB Storage
{% elif attr_name == "location" %}
{{ attr_value.value | default(value='') }}
{% endif %} {% endfor %}
{% endif %}
{{ item.formatted_price | default(value="") }}
by {{ provider_name }}
View Details
{% endfor %} {% else %}
No featured products available at the moment.
{% endif %}

Popular Applications

{% if popular_applications is defined and popular_applications | length > 0 %} {% for item in popular_applications %}
Application {% if item.product is defined and item.product.metadata is defined and (item.product.metadata.featured | default(value=false)) %} Featured {% endif %}
{% set prod_name = 'Unnamed' %} {% set prod_desc = '' %} {% set provider_name = '' %} {% set prod_id = '' %} {% set category_id = '' %} {% set base_price = 0 %} {% set provider_id = '' %} {% set unit_price = 0 %} {% set currency = '' %} {% if item.product is defined %} {% if item.product.name is defined %}{% set prod_name = item.product.name %}{% endif %} {% if item.product.description is defined %}{% set prod_desc = item.product.description %}{% endif %} {% if item.product.provider_name is defined %}{% set provider_name = item.product.provider_name %}{% endif %} {% if item.product.id is defined %}{% set prod_id = item.product.id %}{% endif %} {% if item.product.category_id is defined %}{% set category_id = item.product.category_id %}{% endif %} {% if item.product.base_price is defined %}{% set base_price = item.product.base_price %}{% endif %} {% if item.product.provider_id is defined %}{% set provider_id = item.product.provider_id %}{% endif %} {% endif %} {% if item.price is defined %} {% if item.price.display_amount is defined %}{% set unit_price = item.price.display_amount %}{% endif %} {% if item.price.display_currency is defined %}{% set currency = item.price.display_currency %}{% endif %} {% endif %}

{{ prod_name }}

{{ prod_desc | truncate(length=100) }}

{% if item.product is defined and item.product.attributes is defined and item.product.attributes | length > 0 %}
{% if item.product.attributes is defined and item.product.attributes.app_type is defined %}
{{ item.product.attributes.app_type.value | default(value='') }}
{% endif %} {% if item.product.attributes is defined and item.product.attributes.deployment_type is defined %}
{{ item.product.attributes.deployment_type.value | default(value='') }}
{% endif %}
{% endif %}
{{ item.formatted_price | default(value="") }}
by {{ provider_name }}
View Details
{% endfor %} {% else %}
No popular applications available at the moment.
{% endif %}

Available Services

{% if available_services is defined and available_services | length > 0 %} {% for item in available_services %}
Service {% if item.product is defined and item.product.metadata is defined and (item.product.metadata.featured | default(value=false)) %} Featured {% endif %}
{% set prod_name = 'Unnamed' %} {% set prod_desc = '' %} {% set provider_name = '' %} {% set prod_id = '' %} {% set category_id = '' %} {% set base_price = 0 %} {% set provider_id = '' %} {% set unit_price = 0 %} {% set currency = '' %} {% if item.product is defined %} {% if item.product.name is defined %}{% set prod_name = item.product.name %}{% endif %} {% if item.product.description is defined %}{% set prod_desc = item.product.description %}{% endif %} {% if item.product.provider_name is defined %}{% set provider_name = item.product.provider_name %}{% endif %} {% if item.product.id is defined %}{% set prod_id = item.product.id %}{% endif %} {% if item.product.category_id is defined %}{% set category_id = item.product.category_id %}{% endif %} {% if item.product.base_price is defined %}{% set base_price = item.product.base_price %}{% endif %} {% if item.product.provider_id is defined %}{% set provider_id = item.product.provider_id %}{% endif %} {% endif %} {% if item.price is defined %} {% if item.price.display_amount is defined %}{% set unit_price = item.price.display_amount %}{% endif %} {% if item.price.display_currency is defined %}{% set currency = item.price.display_currency %}{% endif %} {% endif %}

{{ prod_name }}

{{ prod_desc | truncate(length=100) }}

{% if item.product is defined and item.product.attributes is defined and item.product.attributes | length > 0 %}
{% if item.product.attributes is defined and item.product.attributes.service_type is defined %}
{{ item.product.attributes.service_type.value | default(value='') }}
{% endif %} {% if item.product.attributes is defined and item.product.attributes.expertise_level is defined %}
{{ item.product.attributes.expertise_level.value | default(value='') }}
{% endif %}
{% endif %}
{{ item.formatted_price | default(value="") }}
by {{ provider_name }}
View Details
{% endfor %} {% else %}
No services available at the moment.
{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}