Launch
Launches your application.
Command
$ eucalypt launch
# Alias/shortened
$ eucalypt lArguments
[ENV]- The environment to serve the application on. This can be one of:productionaliaspdevelopmentaliasdtestaliast
Defaults to the value of the
APP_ENVenvironment variable. If this is not set, then the default environment isdevelopment.
Options/flags
--portalias-p(Default: 9292)Specify which port to serve the application on.
--rerunalias-r(Default: False)Specify whether or not to use the
rerungem to watch the application files and automatically restart the server when any changes are detected.--quietalias-q(Default: False)Specify whether or not to silence the output of
rerun(only works if the--rerunoption is active).
Examples
$ eucalypt launchLaunches your application with default options and default environment.
$ eucalypt launch productionLaunches your application on the production environment with default options.
$ eucalypt launch -p 6241Launches your application on port
6241on the default environment.$ eucalypt launch -rLaunches your application with default environment, with automatic server restart when watched files are updated (with
rerun).$ eucalypt launch -rqLaunches your application with default environment, with automatic server restart when watched files are updated (with
rerun), but with output silenced.
Last updated