Unified startup CLI and consolidated documentation - #13
Merged
Conversation
Renamed commands: - stats -> resources (CPU/memory usage) - status -> container-status (Docker health) Added new status command to display project info: - Access URLs (Dashboard, API, Database) - Credentials (Dashboard, Database) - API Keys (Anon, Service Role) - Connection info (PostgreSQL, Kong, Pooler) This follows official Supabase CLI conventions and provides clearer separation between different status types.
Require sudo password before displaying sensitive information including API keys, database passwords, and credentials. Updated help text and documentation to indicate this requirement.
DIGITALOCEAN-BENCHMARKS.md: - Update command references to use ./supabase.sh - Remove reference to deleted WORKFLOWS.md - Update file list to reflect new structure OPTIMIZATION.md: - Remove duplicate service lists (now reference README) - Remove duplicate resource usage table (now reference README) - Update testing commands to use unified CLI - Keep unique re-enabling instructions
Member
Author
|
@ronhedwigzape , whenever you have time, can you help reviewing and testing it? Thanks! |
Member
|
Hi @llupRisinglll , It turns out that the new commands are okay in Mac. The old commands were functioning as usual. |
Member
Author
Can I get PR approval? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Created unified CLI for managing Supabase operations and consolidated all documentation.
What Changed
Renamed start.sh to supabase.sh and restructured as a subcommand-based CLI following official Supabase conventions. All operations now go through a single entry point instead of multiple scripts.
Before:
After:
Key Features
Unified interface:
Better command clarity:
Documentation cleanup:
Why These Changes
The old approach required users to know which script to use for different operations. The unified CLI provides a consistent interface that's easier to learn and matches the official Supabase CLI patterns users are already familiar with.
Added sudo authentication for the status command since it displays sensitive API keys and passwords.