Skip to main content

tmux session manager

Project description

desto Logo

desto lets you run and manage your bash and Python scripts in the background (inside tmux sessions) through a simple web dashboard. Launch scripts, monitor their and your system's status, view live logs, and control sessions—all from your browser.

PyPI version Code style: ruff Contributions welcome Tests


The key features are:

  • One-click session control: Start, monitor, and stop tmux sessions from your browser.
  • 🐚 Bash & 🐍 Python support: Run both bash (.sh) and Python (.py) scripts seamlessly.
  • Live system stats: See real-time CPU, memory, and disk usage at a glance.
  • Script management: Use your existing scripts, write new ones, edit, save, or delete them directly in the dashboard.
  • Script chaining: Queue multiple scripts to run sequentially in a single session.
  • Scheduling: Schedule scripts or script chains to launch at a specific date and time.
  • Live log viewer: Watch script output in real time and view logs for each session.
  • Persistent storage: Scripts and logs are saved in dedicated folders for easy access.
  • 🖥️ Command-line interface: Manage sessions, view logs, and control scripts from the terminal with our modern CLI. Learn more →

🎬 Demo

Desto Demo

desto Overview

👀 Dashboard Overview Dashboard Screenshot
🚀 Launch your scripts as `tmux` sessions

When you start desto, it creates desto_scripts/ and desto_logs/ folders in your current directory. Want to use your own locations? Just change these in the settings, or set the DESTO_SCRIPTS_DIR and DESTO_LOGS_DIR environment variables.

Your scripts show up automatically—no setup needed. Both .sh (bash) and .py (Python) scripts are supported with automatic detection and appropriate execution. Ready to launch? Just:

  1. Name your tmux session
  2. Select one of your scripts
  3. (OPTIONAL) edit and save your changes
  4. Click "Launch"! 🎬
Custom Template
🟢 Keep Alive

🟢 Keep Alive: Want your session to stay open after your script finishes? Just toggle the switch. This adds tail -f /dev/null at the end, so you can keep the session active and continue viewing logs, even after your script completes.

✍️ Write new scripts and save them

If you want to compose a new script, you can do it right here, or simply just paste the output of your favorite LLM :) Choose between bash and Python templates with syntax highlighting and smart defaults.

Custom Template
⚙️ Change settings

More settings to be added!

Custom Template
📜 View your script's logs Custom Template

⚡ Quick Start with Docker 🐳

The fastest way to ship desto is by using Docker Compose 🚢

You only need Docker and Docker Compose installed on your machine. If you don't have them yet, you can find installation instructions on the Docker website and Docker Compose documentation (or follow your favorite LLM's instructions 😉).

Start desto in just a few steps:

  1. Clone the repository and go to it's main directory

    git clone https://github.com/kalfasyan/desto.git && cd desto
    
  2. Start the application with Docker Compose

    docker compose up -d
    

Done! 🎉

You’re all set—your desto dashboard is now running at:
🌐 http://localhost:8809

🚀 Essential Docker & Docker Compose Commands
# Start the app in background (Docker Compose)
docker compose up -d
# View logs (Docker Compose)
docker compose logs -f
# Stop and remove services (Docker Compose)
docker compose down
# Rebuild and start (Docker Compose)
docker compose up -d --build
# Run the container directly (plain Docker)
docker run -d -p 8809:8809 \
  -v $PWD/desto_scripts:/app/desto_scripts \
  -v $PWD/desto_logs:/app/desto_logs \
  --name desto-dashboard \
  desto:latest
# View logs (plain Docker)
docker logs -f desto-dashboard
# Stop and remove the container (plain Docker)
docker stop desto-dashboard && docker rm desto-dashboard

🖥️ CLI & 📊 Dashboard Installation with uv or pip

If you are not familiar with uv, you may visit uv's official website for more information.

uv is a super-fast Python package manager and virtual environment tool, written in Rust. It helps you manage dependencies, create isolated environments, and install packages much faster than traditional tools like pip.

Requirements

  • Python 3.11+
  • tmux
  • at (for scheduling features)

Check pyproject.toml

Installation Steps

  1. Install tmux and at

    Instructions for different package managers
    • Debian/Ubuntu
      sudo apt install tmux at
      
    • Almalinux/Fedora
      sudo dnf install tmux at
      
    • Arch Linux
      sudo pacman -S tmux at
      

    Note: The at package is required for scheduling features. If you don't plan to use script scheduling, you can skip installing at.

  2. Install desto

    Installation Steps
    • (Recommended) With uv, simply run:

      uv add desto
      

      This will install desto in your project ✅
      Or if you don't have a project yet, you can set up everything with uv:

      1. Install uv by following the instructions on the official site.

      2. Create and set up your project:

        mkdir myproject && cd myproject
        uv init
        uv venv
        source .venv/bin/activate
        uv add desto
        

        Done!

    • With pip:

      pip install desto
      
  3. Run the Application

    desto
    
  4. Open in your browser
    After starting, visit http://localhost:8809 (or the address shown in your terminal).

Global desto Installation as a uv Tool (includes CLI)

# Install desto CLI globally
uv tool install desto

# Or install from source
cd /path/to/desto
uv tool install . --force

This installs two executables:

  • desto - Web dashboard
  • desto-cli - Command-line interface (work in progress)
Quick CLI Usage
# Check system status
desto-cli doctor
# List all sessions
desto-cli sessions list
# Start a new session
desto-cli sessions start "my-task" "python my_script.py"
# View session logs
desto-cli sessions logs "my-task"
# Kill a session
desto-cli sessions kill "my-task"
# List all scripts
desto-cli scripts list
# Create new script
desto-cli scripts create "my_script" --type python
# Edit script in $EDITOR
desto-cli scripts edit "my_script"
# Run script in tmux session
desto-cli scripts run "my_script"
# Run script directly
desto-cli scripts run "my_script" --direct

📖 Full CLI Documentation →

The CLI provides the same functionality as the web interface but optimized for terminal use, including rich formatting, real-time log viewing, and comprehensive session management.


License

Shield: CC BY 4.0

This work is licensed under a Creative Commons Attribution 4.0 International License.

CC BY 4.0


TODO

  • Explore possibility to pause processes running inside a session
  • Add dark mode/theme toggle for the dashboard UI

desto makes handling tmux sessions and running scripts approachable for everyone—no terminal gymnastics required!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

desto-0.2.5.tar.gz (12.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

desto-0.2.5-py3-none-any.whl (47.1 kB view details)

Uploaded Python 3

File details

Details for the file desto-0.2.5.tar.gz.

File metadata

  • Download URL: desto-0.2.5.tar.gz
  • Upload date:
  • Size: 12.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for desto-0.2.5.tar.gz
Algorithm Hash digest
SHA256 b27931886a80e2ccd3892b403ea57682f58c005d3bf4837180a6e119447e4b38
MD5 93eaf15cad5d55a92fc2f10754d74838
BLAKE2b-256 99c5d0a151d45d693f2c27994edb36d16bebb71be49a84f22ea39131ea6c6ec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for desto-0.2.5.tar.gz:

Publisher: publish.yml on kalfasyan/desto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file desto-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: desto-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 47.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for desto-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ea578f25b02e04d0f82f04197e36fd32f15160c7f55bfe244d092b4608a1f9e6
MD5 a6f1e84da361c1093a68f43d106cc6bf
BLAKE2b-256 e52d0c0794552e01a706aaa957fba3c0bd1bfb66ea942c847404e24dcc8f2f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for desto-0.2.5-py3-none-any.whl:

Publisher: publish.yml on kalfasyan/desto

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page