Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe debug=true url hint more in detail #277

Open
wants to merge 1 commit into
base: releases/24.2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,12 @@ Content hashes are generated and added to the bundles for optimal cashing.
The Scout server delivers such bundles if it runs in production mode (`scout.devMode=false`).
. res: contains all static resources from the various resource folders specified by the `resDir` array, see <<Static Web Resources>>.

TIP: If the property `scout.urlHints.enabled` is set to `true`, the dev files can be requested on the fly even if the server does not run in `devMode`. Just add the query parameter `?debug=true` and the files in the dev folder instead of the ones in the prod folder are delivered. This can be very useful to debug a deployed application.
[TIP]
--
If the property `scout.urlHints.enabled` is set to `true`, the dev files can be requested on the fly even if the server does not run in `devMode`. Just add the query parameter `?debug=true` and the files in the dev folder instead of the ones in the prod folder are delivered. This can be very useful to debug a deployed application.

In detail: Setting the query parameter `?debug=true` changes the defaults for all url hint query parameters: `compress=false` (w/o debug default would be `true`), `cache=false` (w/o debug default would be `true`), `inspector=true` (w/o debug default would be `false`), `minify=false` (w/o debug default would be `true`). These settings are stored in a session cookie.
--

In order to start the build, use the following command:

Expand Down