codeharbor 0.1.16 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/cli.js +2478 -2144
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -538,6 +538,12 @@ npm run build
|
|
|
538
538
|
npm run test:legacy
|
|
539
539
|
```
|
|
540
540
|
|
|
541
|
+
If Python legacy dependencies are missing, install them first:
|
|
542
|
+
|
|
543
|
+
```bash
|
|
544
|
+
python3 -m pip install -r requirements.txt
|
|
545
|
+
```
|
|
546
|
+
|
|
541
547
|
## Legacy Runtime
|
|
542
548
|
|
|
543
549
|
- Legacy Python runtime exists in `app/` and `tests/`.
|