|
@@ -1,8 +1,10 @@
|
|
|
-# Development environment
|
|
|
|
|
|
|
+# Development
|
|
|
|
|
+
|
|
|
|
|
+## Environment
|
|
|
|
|
|
|
|
In order to set up the development environment, run the following based on the OS used:
|
|
In order to set up the development environment, run the following based on the OS used:
|
|
|
|
|
|
|
|
-## Linux
|
|
|
|
|
|
|
+### Linux
|
|
|
|
|
|
|
|
```sh
|
|
```sh
|
|
|
python -m venv distro/python-linux
|
|
python -m venv distro/python-linux
|
|
@@ -17,7 +19,7 @@ npm install -D @types/node@18.16.8 rimraf@5.0.0 typescript@5.0.4
|
|
|
deactivate_node
|
|
deactivate_node
|
|
|
```
|
|
```
|
|
|
|
|
|
|
|
-## Windows
|
|
|
|
|
|
|
+### Windows
|
|
|
|
|
|
|
|
```bat
|
|
```bat
|
|
|
python -m venv distro/python-windows
|
|
python -m venv distro/python-windows
|
|
@@ -31,8 +33,11 @@ npm install axios@1.4.0
|
|
|
npm install -D @types/node@18.16.8 rimraf@5.0.0 typescript@5.0.4
|
|
npm install -D @types/node@18.16.8 rimraf@5.0.0 typescript@5.0.4
|
|
|
distro\nodejs-windows\Scripts\deactivate.bat
|
|
distro\nodejs-windows\Scripts\deactivate.bat
|
|
|
```
|
|
```
|
|
|
|
|
+## Building
|
|
|
|
|
|
|
|
-Then to build the module run
|
|
|
|
|
|
|
+To build the module run
|
|
|
```
|
|
```
|
|
|
npm run build
|
|
npm run build
|
|
|
```
|
|
```
|
|
|
|
|
+
|
|
|
|
|
+There are other development commands specified in the ```package.json``` file.
|