Start App Studio
Version 4.1 and later
App Studio has two scripts for startup and shutdown in the root directory of an App Studio project (app-studio
):
-
app-studio.sh
. A Bash script for Linux and macOS -
app-studio.bat
. A batch file for Windows
You also use these scripts to build an app from source.
Obtain usage information about the scripts
For usage information, enter:
-
Linux and macOS:
./app-studio.sh -help
-
Windows:
app-studio.bat -help
For command-specific usage information, enter:
-
Linux and macOS:
./app-studio command -help
-
Windows:
app-studio.bat command -help
Below, optional parameters are indicated by square brackets, which you do not type.
Startup commands
-
Linux and macOS:
./app-studio start [--production] [-f] [-p port] [-m memory] [-t timeout] [-V]
-
Windows:
app-studio.bat start [-f] [-p port] [-m memory] [-t timeout] [-V]
Parameters
Bold italic text is a placeholder for a value. For example, for -m memory
you might use -m 4g
.
Parameter | Description |
---|---|
|
Start the app in production mode, which disables the configuration wizard and the code editor. |
|
Start App Studio in the foreground. By default, App Studio starts in the background. |
|
Specify the port on which the App Studio web server will listen. The default port is 8080. |
|
Set the minimum (-Xms) and maximum (-Xmx) heap size for the JVM. For example, |
|
Set the startup timeout in seconds. |
|
Output verbose messages from the script. |
Starting multiple App Studio instances
You can run multiple instances of App Studio on a single host by specifying different ports for all instances. Do this on startup, at the command line, using the -p
parameter, for example:
./app-studio.sh start -p 9000
Version 4.0
Before starting App Studio, verify that Fusion Server is running and that it has one or more collections of indexed data.
Run App Studio at the command line from the app-studio
directory, like this:
Unix | Windows | |
---|---|---|
Start the server |
Options:
|
|
Stop the server |
Optionally:
|
|
Restart the server |
|
|
Starting in production mode
App Studio’s standalone mode can be used for small production deployments, by starting in production mode.
Production mode disables the configuration wizard and the code editor.
To use standalone mode in a production environment, start App Studio with the --production
flag:
./app-studio-standalone.sh start --production
What is next
-
See Create a New Web App to learn how to create your first search app.