Skip to main content

pegasus-cli

PyPI Changelog Tests License

Overview

The Pegasus CLI is the command-line companion to SaaS Pegasus: manage your Pegasus projects without leaving the terminal.

With it you can:

  • Create and configure projects — everything you can do in the web UI: pegasus projects create, pegasus projects update, with every project setting scriptable.
  • Push your codebase to GitHubpegasus projects push builds your project and opens a pull request (or creates the repo) for you.
  • Upgrade Pegasus versionspegasus projects push --upgrade bumps your project to the latest release as part of the push.
  • Generate code locallypegasus startapp scaffolds a new Django app with an optional HTMX-powered CRUD interface.

Because every command works non-interactively (--set, --json, --no-upgrade), the CLI also works well in scripts, CI, and AI agent workflows.

A minimal end-to-end session:

pegasus auth
pegasus projects create --set project_name="My App" --set project_slug=my_app
pegasus projects push

Installation

Install this tool using pip:

pip install pegasus-cli

Usage

For help, run:

pegasus --help

You can also use:

python -m pegasus --help

Managing your Pegasus projects

Setup

First, authenticate with your Pegasus API key. You can create one from the "API Keys" section of your SaaS Pegasus profile page (a free account works fine). Then run:

pegasus auth

This will prompt for your API key and save it to ~/.pegasus/credentials. You can also set the PEGASUS_API_KEY environment variable instead.

Listing projects

To see your available projects:

pegasus projects list

Configuring projects

You can create and modify projects from the CLI, mirroring what's available in the web UI.

To see all configurable fields with their types, choices, and the license tier each requires:

pegasus projects fields

By default this shows the schema for a new project, which omits fields whose only valid value is the default (e.g. deprecated bundlers or CSS frameworks). To see the schema as it applies to an existing project — including any legacy options that project can still configure — pass --for:

pegasus projects fields --for <project_id>

To show a project's full configuration:

pegasus projects show <project_id>

To create a new project, pass fields with --set key=value (repeatable), load them from a pegasus-config.yaml (or JSON) file with --config-file, or combine the two — --set values override values from the file:

pegasus projects create \
  --set project_name="My App" \
  --set project_slug=my_app \
  --set use_subscriptions=true

pegasus projects create --config-file pegasus-config.yaml

pegasus projects create --config-file pegasus-config.yaml --set use_celery=true

To update an existing project, use the same flags with a project ID. Only the fields you specify are changed; everything else is left alone:

pegasus projects update <project_id> --set front_end_framework=react

Pass --json to any of these commands to get machine-readable output instead of a Rich table.

Pushing to GitHub

To push a project to GitHub by ID:

pegasus projects push <project_id>

If you don't specify a project ID, you'll be prompted to choose from your projects:

pegasus projects push

To upgrade to the latest Pegasus version before pushing:

pegasus projects push <project_id> --upgrade

To upgrade to the latest development build instead of the stable release:

pegasus projects push <project_id> --upgrade --dev

To push as-is without upgrading and without the interactive prompt (useful in CI, scripts, or agent flows):

pegasus projects push <project_id> --no-upgrade

To set a custom pull request title (used when a PR is created):

pegasus projects push <project_id> --upgrade --pr-title "Upgrade Pegasus to 2025.2"

The CLI will show progress as the build runs and print the pull request or repository URL when complete.

Custom server URL

By default, commands use https://www.saaspegasus.com. To use a different server, pass --base-url or set PEGASUS_BASE_URL:

pegasus projects --base-url https://your-server.com list

Creating Django apps

The pegasus startapp command creates a new app in your Django project, and (optionally) spins up an entire Create / Update / Delete (CRUD) interface for it, built with Django forms and HTMX. It is designed for Pegasus projects, but can be used more generally for any Django project.

Example usage:

pegasus startapp todos Project Todo

This will create a todos app in your Django project with models, URLs, views and templates to work with a Project and Todo model.

A demo is worth 1,000 words. Click the image below to see it in action:

Pegasus CLI Demo

Configuration

You can run pegasus startapp --help for configuration options. In addition to the command-line options, you can also set default values for configuration options by creating a pegasus-config.yaml file in your project directory. The format of the file is:

cli:
  app_directory: apps
  module_path: apps
  template_directory: templates
  base_model: apps.teams.models.BaseTeamModel
  use_teams: true
  django_settings: myproject/settings.py  # optional, auto-detected from manage.py by default

The above configuration is the recommended configuration for SaaS Pegasus projects (with teams turned on, else set use_teams: false and base_model: apps.utils.models.BaseModel).

A recommended default configuration for your project will be included in your project's pegasus-config.yaml file if you are on Pegasus version 2024.9 or later.

The Pegasus config will create your apps in the apps directory, and will use the templates directory for your templates.

Automatic App Installation

When you run pegasus startapp, the CLI will automatically try to add the new app to your Django project's settings.py and urls.py files. It does this by:

  1. Parsing manage.py in the current directory to find your DJANGO_SETTINGS_MODULE.
  2. Adding the app's AppConfig to PROJECT_APPS (preferred) or INSTALLED_APPS in your settings file.
  3. Adding a path() entry to urlpatterns (or team_urlpatterns if using teams) in the urls.py file next to your settings.

If the CLI can't find manage.py or your settings file, it will fall back to printing manual instructions instead.

You can also specify the settings file explicitly:

pegasus startapp todos --django-settings myproject/settings.py

Migrating pg- CSS classes

If you're upgrading a Pegasus project that previously used the legacy pg- prefixed CSS classes (e.g. pg-button, pg-card), you can run:

pegasus migrate-css

from your project root to replace them with their native Tailwind/DaisyUI equivalents in your templates and JavaScript files. The class mappings are read from your project's assets/styles/pegasus/tailwind.css so they always match the version of Pegasus your project was built with.

Use --dry-run to preview changes without modifying files. For non-standard project layouts, --css-file and --search-dir (repeatable) let you point at alternate paths.

Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

cd cli
python -m venv venv
source venv/bin/activate

Now install the dependencies and dev dependencies:

pip install -e '.[dev]'

To run the tests:

pytest

Setup pre-commit hooks:

pre-commit install

Download files

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

Source Distribution

pegasus_cli-0.16.tar.gz (39.3 kB view details)

Uploaded Source

Built Distribution

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

pegasus_cli-0.16-py3-none-any.whl (45.7 kB view details)

Uploaded Python 3

File details

Details for the file pegasus_cli-0.16.tar.gz.

File metadata

  • Download URL: pegasus_cli-0.16.tar.gz
  • Upload date:
  • Size: 39.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pegasus_cli-0.16.tar.gz
Algorithm Hash digest
SHA256 05901b89ea376e558fbb714a66c469a6e234fe550dbac8bf8dbb0018ba9544ef
MD5 4351f35bded7819938c0e046227d62d7
BLAKE2b-256 dbd437e076af2780695ca4a598cefc28e2fc7d0ea917e8a54afb330258a61b71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pegasus_cli-0.16.tar.gz:

Publisher: publish.yml on saaspegasus/pegasus-cli

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

File details

Details for the file pegasus_cli-0.16-py3-none-any.whl.

File metadata

  • Download URL: pegasus_cli-0.16-py3-none-any.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pegasus_cli-0.16-py3-none-any.whl
Algorithm Hash digest
SHA256 3b3fa2f5a67ffb2ffbaacbce334fc0f47b6bf2337c8d7569672757b0f54e12f4
MD5 beb4c58c27abb07993990be7150f86aa
BLAKE2b-256 f0e4fbd43feee4958ba779819cdb3d384fa79412ed9f3408d329f52fc34f01d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pegasus_cli-0.16-py3-none-any.whl:

Publisher: publish.yml on saaspegasus/pegasus-cli

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

Release history Release notifications | RSS feed

This release

0.16 This release

2 files

0.15

2 files

0.13

2 files

0.12

2 files

0.11

2 files

0.10

2 files

0.9

2 files

0.8

2 files

0.7

2 files

0.6

2 files

0.5

2 files

0.4

2 files

0.3

2 files

0.2.1

2 files

0.2

2 files

0.1.2

2 files

0.1.1

2 files

0.1

2 files

Supported by

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