Skip to main content

Minimal CLI to deploy and share static sites, HTML, and Markdown from your own server.

Project description

toss logo

Toss

Toss is a minimal CLI to deploy and share static sites, HTML, and Markdown from your own server. Fast configuration and easy to setup so you can use it from about everywhere and share your work with private URLs.

Features

  • Deploy a Markdown file, an HTML file, or a full directory with a single command
  • Markdown pages render in the browser with LaTeX (KaTeX), syntax highlighting, footnotes, callouts, and Mermaid diagrams
  • Random slugs by default, custom slugs with --slug
  • Build-and-deploy in one step with --build
  • List, hide, unhide, and permanently delete deployments
  • Visit stats (total requests, unique visitors, last accessed) via Caddy JSON logs
  • Machine-readable JSON output with --json (deploy, list, stats)
  • Skip confirmation prompts with -y for scripting and automation
  • Zero server-side dependencies beyond Caddy and SSH access

Installation and setup

[!NOTE] The following prerequisites are needed before installing toss.

  • Python 3.10+
  • uv
  • git
  • rsync and ssh available in PATH (client-side)
  • SSH access to a server running Caddy

Server-side setup

You'll first need to configure your server to serve files through SSH and Caddy. This section assumes you are running the commands on your server.

Add a DNS A record: share (or anything you like) pointing to your server IP.

Create the sites directory and give your SSH user write access:

sudo mkdir -p /srv/sites
sudo chown youruser:youruser /srv/sites

Add a block to your Caddyfile for the share subdomain:

share.yourdomain.com {
    root * /srv/sites
    file_server
    header X-Robots-Tag "noindex, nofollow"
    handle_errors {
        rewrite * /404.html
        file_server
    }
}

If running Caddy in Docker, also mount /srv/sites in your Caddy container's volumes:

volumes:
  - /srv/sites:/srv/sites:ro

Copy the 404 page to your server. Feel free to edit assets/404.html to add your own contact info, and edit toss_cli/templates/markdown_page.html to customize the Markdown rendering theme before installing:

scp assets/404.html user@your-server:/srv/sites/404.html

Then restart Caddy:

# assuming systemd
sudo systemctl reload caddy
# or if using Docker
docker compose up -d caddy

Enabling visit stats

toss stats parses Caddy's JSON access logs over SSH. Note that this required Caddy logging and thus is optional.

Add a log block to your Caddy site block:

share.yourdomain.com {
    log {
        output file /var/log/caddy/access.log
        format json
    }
    root * /srv/sites
    ...
}

If running Caddy in Docker, mount the log directory in your docker-compose.yml:

volumes:
  - /var/log/caddy:/var/log/caddy

Create the log directory and make it readable by your SSH user (run on server):

sudo mkdir -p /var/log/caddy
sudo chmod o+rx /var/log/caddy
# after the first restart, also:
sudo chmod o+r /var/log/caddy/access.log

Restart Caddy, then re-run toss init and enter the log path (default: /var/log/caddy/access.log).

Local CLI

Once the server is configured, install toss:

uv tool install toss-cli

Once toss is installed, run the interactive setup wizard once:

toss init

This will prompt you for your server details, validate SSH connectivity, and save a config file at ~/.config/toss/config.toml.

[!NOTE] Re-run toss init at any time to update your configuration. If you prefer to edit it manually, it uses the following format:

host = "user@my-server"
domain = "share.mydomain.com"
remote_path = "/srv/sites"
slug_length = 6
log_path = "/var/log/caddy/access.log"  # optional, needed for toss stats

Usage

# deploy a Markdown file, an HTML file, or a directory
toss deploy path/to/file.md
toss deploy path/to/page.html
toss deploy path/to/site/

# custom slug and title (for Markdown files)
toss deploy report.md --slug my-report
toss deploy report.md --title "My Report"

# build then deploy
toss deploy . --build "npm run build"
toss deploy . --build "npm run build" --out dist

# skip confirmation prompts (useful for scripts)
toss deploy path/to/site/ --slug my-site -y
toss rm <slug> -y

# list all deployments
toss list

# hide (makes URL return 404) and unhide
toss hide <slug>
toss unhide <slug>

# permanently delete
toss rm <slug>

# show visit stats
toss stats <slug>

# machine-readable JSON output
toss --json deploy path/to/site/
toss --json list
toss --json stats <slug>

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

toss_cli-1.3.0.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

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

toss_cli-1.3.0-py3-none-any.whl (15.4 kB view details)

Uploaded Python 3

File details

Details for the file toss_cli-1.3.0.tar.gz.

File metadata

  • Download URL: toss_cli-1.3.0.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for toss_cli-1.3.0.tar.gz
Algorithm Hash digest
SHA256 2d684910ef74e592b58bf30a8fdf0b04d0f00069191d305eb55439c425a23b7d
MD5 78f236428d2a756ee28864b4af9ebaa9
BLAKE2b-256 d73fab56bd41e6653fc59ed366f2196e7e3f4199f9912cd31a29293b4564fffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for toss_cli-1.3.0.tar.gz:

Publisher: publish.yml on brayevalerien/toss

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

File details

Details for the file toss_cli-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: toss_cli-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 15.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for toss_cli-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2cd011b5302a1eeb0ea6c310c5c2d43974050f09bc9a787a2a8f866e504daacf
MD5 997685508bca1c329ca3f849192ddd0c
BLAKE2b-256 8b542b9086ca63ffd2655adb7cb8a7ae187010b98e2dc5d8992b8f4cba82acfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for toss_cli-1.3.0-py3-none-any.whl:

Publisher: publish.yml on brayevalerien/toss

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