object DevServerStart

Used to start servers in 'dev' mode, a mode where the application is reloaded whenever its source changes.

Source
DevServerStart.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DevServerStart
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def mainDevHttpAndHttpsMode(buildLink: BuildLink, httpPort: Int, httpsPort: Int, httpAddress: String): ReloadableServer

    Provides an HTTP and HTTPS server for the dev environment

    Provides an HTTP and HTTPS server for the dev environment

    This method uses simple Java types so that it can be used with reflection by code compiled with different versions of Scala.

  2. def mainDevHttpMode(buildLink: BuildLink, httpPort: Int, httpAddress: String): ReloadableServer

    Provides an HTTP server for the dev environment

    Provides an HTTP server for the dev environment

    This method uses simple Java types so that it can be used with reflection by code compiled with different versions of Scala.

  3. def mainDevOnlyHttpsMode(buildLink: BuildLink, httpsPort: Int, httpAddress: String): ReloadableServer

    Provides an HTTPS-only server for the dev environment.

    Provides an HTTPS-only server for the dev environment.

    This method uses simple Java types so that it can be used with reflection by code compiled with different versions of Scala.