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 undeploy <slug> -y

# list all deployments
toss list

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

# permanently delete
toss undeploy <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.2.0.tar.gz (17.8 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.2.0-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: toss_cli-1.2.0.tar.gz
  • Upload date:
  • Size: 17.8 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.2.0.tar.gz
Algorithm Hash digest
SHA256 5f6305178e9975b7d726ac1948db2fb423d4d7d8ec0797094d2a10e60d0f65b9
MD5 22ca448d1877b5bad95c71ac063534e0
BLAKE2b-256 8f7ab6463ae71c9bf9980fc2ff1e78482c84154578acc99433ef57696b6c2c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for toss_cli-1.2.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.2.0-py3-none-any.whl.

File metadata

  • Download URL: toss_cli-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 15.3 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 75fc7f94473cc8575420df294c833708d4df0589600992c55dcfa300297b367d
MD5 6ee7108b47137dafa3a94264fade858e
BLAKE2b-256 22818556df41b5baa3932b2cfea5b8576a3ccbd7db168e02276c0df63637f253

See more details on using hashes here.

Provenance

The following attestation bundles were made for toss_cli-1.2.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