Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/source/_static/img/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions docs/source/_templates/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<meta property="og:title" content="Jumpstarter Docs" />
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jumpstarter Documentation

<meta property="og:description"
content="Jumpstarter is an open source and cloud native Hardware-in-the-Loop testing tool that enables you to test your software stack on both real hardware and virtual environments using CI/CD principles." />
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jumpstarter is a free, open-source tool for testing software on real/virtual hardware with CI/CD. It’s a Makefile for device automation—decouple targets, run consistent rules locally or distributed.

<meta property="og:image" content="{{ deploy_url }}/_static/img/avatar.png" />
3 changes: 3 additions & 0 deletions docs/source/_templates/page.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{% extends "!page.html" %}
{% block extrahead %}
{% include "head.html" %}
{% endblock %}

{% block content %}
<div class="admonition warning">
Expand Down
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "furo"
html_title = "Jumpstarter"
html_title = "Jumpstarter Docs"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jumpstarter Documentation

html_logo = "_static/img/logo-light-theme.svg"
html_favicon = "_static/img/favicon.png"
html_show_sphinx = False
Expand Down Expand Up @@ -95,4 +95,5 @@
# Patterns for the versions panel
html_context = {
"display_lower": True, # Display lower versions at the bottom of the menu
"deploy_url": os.getenv("DEPLOY_URL", "http://localhost:8000"), # Get Netlify URL from environment variable
}