Skip to content

Configuration

XtoMHA96 edited this page Oct 25, 2023 · 2 revisions

Configuration of the Application's Web Server Port

You can modify the connection port of the web server. If not specified, the default port is 5001.

To configure this option, simply edit the .env file located in the executable's directory within the resources/app folder.

To set the PORT, just add the following line to the .env file as PORT=<NEW_PORT>.

For example: PORT=5001

Browser Selection for the Application

You have the option to choose which browser the application will use. If no configuration is set, the application will open in your default browser.

To configure this option, simply edit the .env file located in the executable's directory within the resources/app folder.

To select the browser that will open the application, add the following line to the .env file:

  • BROWSER=chrome -> Opens the URL in Google Chrome.
  • BROWSER=firefox -> Opens the URL in Mozilla Firefox.
  • BROWSER=msedge -> Opens the URL in Microsoft Edge.
  • BROWSER=safari -> Opens the URL in Apple Safari.
  • BROWSER=opera -> Opens the URL in Opera.
  • BROWSER=brave -> Opens the URL in Brave.
  • DO NOT DEFINE THIS LINE -> Opens the URL in the default browser.
Clone this wiki locally