chore: updates for clarity
All checks were successful
Publish to docs.datacontroller.io / Deploy docs (push) Successful in 2m14s

This commit is contained in:
a 2025-03-07 14:35:23 +00:00
parent cfeeb29340
commit ee0441a40d

View File

@ -22,7 +22,7 @@ The Stored Processes are deployed using a SAS Program. This should be executed
```sas ```sas
%let appLoc=/Shared Data/apps/DataController; /* CHANGE THIS!! */ %let appLoc=/Shared Data/apps/DataController; /* CHANGE THIS!! */
filename dc url "https://git.datacontroller.io/dc/dc/releases/download/vX.X.X/sas9.sas; /* use correct release */ filename dc url "https://git.datacontroller.io/dc/dc/releases/download/latest/sas9.sas;
%inc dc; %inc dc;
``` ```
@ -39,20 +39,18 @@ The Data Controller frontend comes pre-built, and ready to deploy to the root of
Deploy as follows: Deploy as follows:
1. Download the `frontend.zip` file from: [https://git.datacontroller.io/dc/dc/releases](https://git.datacontroller.io/dc/dc/releases) 1. Download the `frontend.zip` file from: [https://git.datacontroller.io/dc/dc/releases](https://git.datacontroller.io/dc/dc/releases)
2. Unzip and place in the [htdocs folder of your SAS Web Server](https://sasjs.io/frontend-deployment/#sas9-deploy) - typically `!SASCONFIG/LevX/Web/WebServer/htdocs`. 2. Unzip and place in the [htdocs folder of your SAS Web Server](https://sasjs.io/frontend-deployment/#sas9-deploy) - typically a subdirectory of: `!SASCONFIG/LevX/Web/WebServer/htdocs`.
3. Open the `index.html` file and update the values as follows: 3. Open the `index.html` file and update the values in the `<sasjs>` tag as follows:
* `appLoc` - same as per SAS code in the section above * `appLoc` - same as per SAS code in the section above
* `serverType` - should be `SAS9` * `serverType` - change this to`SAS9`
* `serverUrl` - Provide only if your SAS Mid Tier is on a different domain than the web server (protocol://SASMIDTIERSERVER:port) * `serverUrl` - Provide only if your SAS Mid Tier is on a different domain than the web server (protocol://SASMIDTIERSERVER:port)
* `loginMechanism` - set to `Redirected` if using SSO or 2FA * `loginMechanism` - set to `Redirected` if using SSO or 2FA
* `debug` - set to `true` to debug issues on startup (otherwise it's faster to leave it off and turn on in the application itself when needed) * `debug` - set to `true` to debug issues on startup (otherwise it's faster to leave it off and turn on in the application itself when needed)
The remaining properties are not relevant for a SAS 9 deployment. The remaining properties are not relevant for a SAS 9 deployment and can be **safely ignored**.
![](img/indexhtml_settings.png) You can now open the app at `https://YOURWEBSERVER/unzippedfoldername` (step 2 above) and follow the configuration steps (DC Physical Location and Admin Group) to complete deployment.
You can now open the app at `https://YOURWEBSERVER/unzippedfoldername` and follow the configuration steps (DC Physical Location and Admin Group) to complete deployment.
#### 3 - Run the Configurator #### 3 - Run the Configurator