You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data directory we cloned above only brings in sources maintained by this project. Notably it does not include SUSE Linux Enterprise Server, Red Hat Enterprise Linux, or Ubuntu. Instead, these sources are maintained by the Package Distro Search tool (abbreviated as PDS). In order to bring in those data sources, you will need to do that directly, as follows.
78
+
80
79
For example, taking RHEL_8_Package_List.json
81
80
- Usage help will be displayed:
82
81
```
@@ -94,7 +93,7 @@ Example:
94
93
```
95
94
Example of extracting the RHEL_8_Package_List.json from PDS repo:
The `src/config/supported_distros.py` must now be updated to reflect the new json files that have been brought in order for them to be reflected in the UI. We started with a sample file back in Step 2, so that's a good starting place. For more details about the formatting and expectations of this file, follow steps mentioned in Step 2 of [Adding_new_distros](https://github.com/openmainframeproject/software-discovery-tool/blob/master/docs/Adding_new_distros.md#step-2-update-the-supported_distros-variable-in-configuration-file-sdt_basesrcconfigconfigpy)
111
+
111
112
112
113
### Step 6: Install and populate the SQL database
113
114
@@ -215,15 +216,16 @@ In case any of the parameters are updated, the server has to be restarted:
215
216
216
217
#### Ensure Node.js and npm are installed
217
218
218
-
# Make sure you have Node.js and npm installed. You can download them from [here](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
219
+
sudo apt install npm
220
+
219
221
220
222
#### Change to the react-frontend directory
221
223
222
-
cd react-frontend
224
+
cd react-frontend
223
225
224
226
#### Install the required npm packages
225
227
226
-
npm i
228
+
sudo npm i
227
229
228
230
#### Setting up the Environment Variables
229
231
@@ -252,4 +254,4 @@ To configure the Flask server URL for your React application, follow these steps
0 commit comments