mix combo.serve (combo v0.5.0)

View Source

Serves all endpoints.

Note: To start the endpoint without using this mix task, you must set server: true in your endpoint configuration.

Options

This task accepts the same command-line options as mix run.

For example, to run combo.serve without recompiling:

$ mix combo.serve --no-compile

If the IEx is running, the --no-halt flag is automatically added.

Note that the --no-deps-check flag cannot be used this way, because Mix needs to check dependencies to find combo.serve. To run combo.serve without checking dependencies, you can run:

$ mix do deps.loadpaths --no-deps-check, combo.serve