Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/cmd/dev.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ func init() {

var devCmd = &cobra.Command{
Use: "dev",
Short: "starts a local development server for Turso",
Long: fmt.Sprintf("starts a local development server for Turso.\n\nIf you're using a libSQL client SDK that supports SQLite database files on the local filesystem, then you might not need this server at all.\nInstead, you can use a %s URL with the path to the file you want the SDK to read and write.", internal.Emph("file:")),
Short: "Starts a local development server for Turso",
Long: fmt.Sprintf("Starts a local development server for Turso.\n\nIf you're using a libSQL client SDK that supports SQLite database files on the local filesystem, then you might not need this server at all.\nInstead, you can use a %s URL with the path to the file you want the SDK to read and write.", internal.Emph("file:")),
Args: cobra.NoArgs,
ValidArgsFunction: noFilesArg,
RunE: func(cmd *cobra.Command, args []string) error {
Expand Down
Loading