Skip to content
This repository was archived by the owner on Dec 8, 2021. It is now read-only.

Start Polaris

Tyler James Leonhardt edited this page Oct 26, 2017 · 2 revisions

NAME

Start-Polaris

SYNOPSIS

Starts the web server.

SYNTAX

Start-Polaris [[-Port] <Object>] [[-MinRunspaces] <Object>] [[-MaxRunspaces] <Object>] [-UseJsonBodyParserMiddleware] [<CommonParameters>]

DESCRIPTION

Starts the web server.

PARAMETERS

  • Port: (Optional) The port you want the web server to run on. Defaults to 8080.
  • MinRunspaces: (Optional) The minimum number of runspaces you want to be running. Used for parallelized execution. Defaults to 1.
  • MaxRunspaces: (Optional) The maximum number of runspaces you want to be running. Used for parallelized execution. Defaults to 1.
  • -UseJsonBodyParserMiddleware: (Optional) Will enable the Json body parser middleware. Defaults to off.
  • CommonParameters

EXAMPLES

Start-Polaris

Start-Polaris -Port 8081

Start-Polaris -Port 8081 -MaxRunspaces 5

Start-Polaris -UseJsonBodyParserMiddleware
Clone this wiki locally