cortex start

Start the Cortex HTTP server and background daemon processes.

Usage

cortex start [options]

Options

OptionDescription
--port, -pPort for the HTTP server (default: 3000)
--host, -HHost to bind to (default: 127.0.0.1)
--daemon-onlyStart only the daemon processes
--server-onlyStart only the HTTP server
--helpShow help for this command

Examples

# Start Cortex
cortex start

# Start on custom port
cortex start -p 8080 -H 0.0.0.0

# Start only the server
cortex start --server-only