blitz start
Alias: blitz s
Starts the Blitz server. It starts in development mode by default.
Options
Option | Shorthand | Description | Default |
---|---|---|---|
--production | ️ | Start the server in production mode. Use this when deploying to a server (not serverless) | false |
--hostname | -H | Set the hostname to use for the server. | "localhost" |
--port | -p | Set the port you'd like the server to listen on. | 3000 |
Examples
blitz start
blitz start --production
blitz start --production -H 127.0.0.1 -p 5632