Skip to content

Quickstart


User Quickstart

Prerequisites

Ensure you have the following installed:

  • redis 8 or above (via podman/docker or system-installed version)
  • Python 3.10 or above

1. Install the tangram core

uv tool install tangram_core
python3 -m venv .venv
source .venv/bin/activate
pip install tangram_core

For end users, the only supported installation method is from a package index (like PyPI) that hosts pre-built binary wheels. For developers wanting to use the latest git version, refer to the developer guide below.

2. Configuration

Create a tangram.toml file to control the application. This is where you define which plugins are active.

[core]
redis_url = "redis://127.0.0.1:6379"
plugins = []

[server]
host = "127.0.0.1"
port = 2346

[channel]
host = "127.0.0.1"
port = 2347
jwt_secret = "a-better-secret-than-this"
jwt_expiration_secs = 315360000

3. Running tangram

tangram uses Redis for messaging. The easiest way to run one is with a container. Install podman or docker and run:

podman run -d --rm -p 6379:6379 --name redis redis:latest

To start tangram, run:

tangram serve --config /path/to/your/tangram.toml

Open your browser and navigate to http://localhost:2346 to access the web interface.

4. Adding functionality with plugins

The core tangram application provides the shell. All features are added by installing and enabling plugins.

Example 1: add system monitoring

The tangram_system plugin adds a widget to the UI that displays server metrics like CPU and memory usage. It is a pure-Python package with no external services.

1. Install the plugin package

uv tool install --with tangram_system tangram
# assuming you have an active virtual environment with tangram installed
pip install tangram_system

2. Enable the plugin in your tangram.toml

[core]
redis_url = "redis://127.0.0.1:6379"
plugins = ["tangram_system"]

[server]
# ...

3. Restart the server

Stop the running tangram serve process (Ctrl+C) and start it again. The web interface will now include the system monitoring widget.

Example 2: add live aircraft data

To display live flight data, you need the tangram_jet1090 plugin. This plugin is more advanced, as it requires an external data source.

1. Run the jet1090 service

The plugin needs a running jet1090 instance to receive Mode S/ADS-B data. The easiest way to run one is with a container.

# connects to a public feed.
podman run -d --rm --name jet1090 \
--network=host \
ghcr.io/xoolive/jet1090:latest \
jet1090 --redis-url "redis://127.0.0.1:6379" "ws://feedme.mode-s.org:9876/40128@EHRD"

Tip

The jet1090 container is a dependency of the plugin, not the tangram core. You can run it on any machine as long as it can connect to your Redis instance.

2. Install and enable the plugin

Just like before, install the package and add it to your tangram.toml.

uv tool install --with tangram_system --with tangram_jet1090 tangram
# assuming you have an active virtual environment with tangram installed
pip install tangram_jet1090
[core]
redis_url = "redis://127.0.0.1:6379"
plugins = [
    "tangram_system",
    "tangram_jet1090"
]

3. Restart tangram serve

After restarting, your map should begin to populate with live aircraft data.

graph LR
    subgraph Your Machine
        direction LR
        J[jet1090 container] --> R[Redis]
        T[tangram process] --> R
    end
    subgraph Internet
        F[Public ADS-B Feed] --> J
    end

    B[Browser] --> T

Developer Quickstart

This guide is for setting up a development environment for the tangram core and builtin plugins. To extend tangram, start with the Backend Plugin Guide instead. This is the definitive resource for creating your own installable plugins with custom APIs and services.

Prerequisites

Ensure you have the following installed:

  • git
  • redis 8 or above (via podman/docker or system-installed version)
  • Python 3.10 or above
  • uv (not required, but highly recommended)
  • Rust
  • Node and pnpm

To get things quickly installed:

curl -LsSf https://astral.sh/uv/install.sh | sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
curl -fsSL https://fnm.vercel.app/install | bash
fnm install --latest
corepack enable pnpm

Environment Setup

  1. Clone the repository:

    git clone https://github.com/open-aviation/tangram.git
    cd tangram
    
  2. Build the frontend

    pnpm i
    pnpm build
    
  3. Install Python dependencies

    uv sync --all-packages --all-groups
    

This installs the core application and all plugins in editable mode into a virtual environment, along with useful developer utilities. This may take a minute or two as Rust compiles the core.

Running in Development Mode

  1. Ensure Redis (and any other services like jet1090) are running, as described in the user guide above.

  2. In one terminal, start the tangram server. This runs the FastAPI application, the channel service, and all enabled backend plugins.

    uv run tangram serve --config tangram.example.toml
    
  3. In a second terminal, start the Vite development server for the v0.1 frontend. This provides Hot Module Replacement (HMR) for UI changes.

    just legacy-web
    

The frontend will be available at http://localhost:2345 and will proxy API requests to the backend.

v0.2 Frontend Plugins

The pnpm build command compiles the new v0.2 frontend plugin assets. HMR for these plugins is not yet supported; you must re-run pnpm build to see changes.

To build the documentation:

```sh
uv run mkdocs serve
```

To format all Rust, Python and JS code:

```sh
just fmt
```