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
Copy file name to clipboardExpand all lines: mflix/README-JAVA-SPRING.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,13 @@ The `sample_mflix` dataset contains movies released up to **2016**. Searching fo
30
30
31
31
## Verify Requirements
32
32
33
-
Before getting started, you can run the verification script to check if you have all the necessary requirements:
33
+
Before getting started, run the verification script to check if you have the required runtime:
34
34
35
35
```bash
36
-
./check-requirements.sh
36
+
./check-requirements-java.sh --pre
37
37
```
38
38
39
-
This script checks for required tools (Java, Maven, Node.js), validates your environment configuration, and verifies dependencies. Run with `--help` for more options.
39
+
This checks that Java and JAVA_HOME are configured correctly. Run with `--help` for more options.
40
40
41
41
## Getting Started
42
42
@@ -191,6 +191,16 @@ cd client
191
191
npm run lint
192
192
```
193
193
194
+
## Verify Setup
195
+
196
+
After completing the setup, run the full verification to ensure everything is configured correctly:
197
+
198
+
```bash
199
+
./check-requirements-java.sh
200
+
```
201
+
202
+
This checks your Java environment, Maven dependencies, `.env` configuration, and frontend setup.
203
+
194
204
## Issues
195
205
196
206
If you have problems running the sample app, please check the following:
Copy file name to clipboardExpand all lines: mflix/README-NODE-EXPRESS.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,13 @@ The `sample_mflix` dataset contains movies released up to **2016**. Searching fo
29
29
30
30
## Verify Requirements
31
31
32
-
Before getting started, you can run the verification script to check if you have all the necessary requirements:
32
+
Before getting started, run the verification script to check if you have the required runtime:
33
33
34
34
```bash
35
-
./check-requirements.sh
35
+
./check-requirements-js.sh --pre
36
36
```
37
37
38
-
This script checks for required tools (Node.js, npm), validates your environment configuration, and verifies dependencies. Run with `--help` for more options.
38
+
This checks that Node.js and npm are installed with the correct versions. Run with `--help` for more options.
39
39
40
40
## Getting Started
41
41
@@ -224,6 +224,16 @@ cd client
224
224
npm run lint
225
225
```
226
226
227
+
## Verify Setup
228
+
229
+
After completing the setup, run the full verification to ensure everything is configured correctly:
230
+
231
+
```bash
232
+
./check-requirements-js.sh
233
+
```
234
+
235
+
This checks your Node.js environment, npm dependencies, `.env` configuration, and frontend setup.
236
+
227
237
## Issues
228
238
229
239
If you have problems running the sample app, please check the following:
Copy file name to clipboardExpand all lines: mflix/README-PYTHON-FASTAPI.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,13 @@ The `sample_mflix` dataset contains movies released up to **2016**. Searching fo
33
33
34
34
## Verify Requirements
35
35
36
-
Before getting started, you can run the verification script to check if you have all the necessary requirements:
36
+
Before getting started, run the verification script to check if you have the required runtime:
37
37
38
38
```bash
39
-
./check-requirements.sh
39
+
./check-requirements-python.sh --pre
40
40
```
41
41
42
-
This script checks for required tools (Python, pip, Node.js), validates your environment configuration, and verifies dependencies. Run with `--help` for more options.
42
+
This checks that Python and pip are installed with the correct versions. Run with `--help` for more options.
43
43
44
44
## Getting Started
45
45
@@ -206,6 +206,16 @@ cd client
206
206
npm run lint
207
207
```
208
208
209
+
## Verify Setup
210
+
211
+
After completing the setup, run the full verification to ensure everything is configured correctly:
212
+
213
+
```bash
214
+
./check-requirements-python.sh
215
+
```
216
+
217
+
This checks your Python environment, dependencies, `.env` configuration, and frontend setup.
218
+
209
219
## Issues
210
220
211
221
If you have problems running the sample app, please check the following:
0 commit comments