subcommands

package
v0.13.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 10, 2025 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var StartCmd = &cobra.Command{
	Use:   "start",
	Short: "Start the FalkorDB container",
	Long: "\nStart the FalkorDB Docker container for knowledge graph storage.\n\n" +
		"FalkorDB is required for the daemon to store file metadata, semantic analysis results, " +
		"and embeddings. The container is started using Docker and persists data in ~/.memorizer/falkordb/.\n\n" +
		"Use --detach to run the container in the background (default). Without --detach, " +
		"the container runs in foreground mode and can be stopped with Ctrl+C.",
	PreRunE: validateStart,
	RunE:    runStart,
}
View Source
var StatusCmd = &cobra.Command{
	Use:   "status",
	Short: "Check FalkorDB status",
	Long: "\nCheck the health and status of the FalkorDB knowledge graph.\n\n" +
		"Displays whether the FalkorDB container is running and configuration details.",
	PreRunE: validateStatus,
	RunE:    runStatus,
}
View Source
var StopCmd = &cobra.Command{
	Use:   "stop",
	Short: "Stop the FalkorDB container",
	Long: "\nStop the FalkorDB Docker container.\n\n" +
		"This gracefully stops the FalkorDB container. Data is preserved in the persistent volume " +
		"and will be available when the container is started again.\n\n" +
		"Use --remove to also remove the container (data is still preserved in the volume).",
	PreRunE: validateStop,
	RunE:    runStop,
}

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL