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
| Part 2: API |[v3.0 (01002-3-0)](https://industrialdigitaltwin.org/en/wp-content/uploads/sites/2/2023/06/IDTA-01002-3-0_SpecificationAssetAdministrationShell_Part2_API_.pdf)|
13
+
| Part 2: API |[v3.1.1 (01002-3-1-1)](https://industrialdigitaltwin.org/en/wp-content/uploads/sites/2/2025/08/IDTA-01002-3-1-1_AAS-Specification_Part2_API.pdf)|
14
14
| Part 3a: Data Specification IEC 61360 |[v3.0 (01003-a-3-0)](https://industrialdigitaltwin.org/wp-content/uploads/2023/04/IDTA-01003-a-3-0_SpecificationAssetAdministrationShell_Part3a_DataSpecification_IEC61360.pdf)|
15
15
| Part 5: Package File Format (AASX) |[v3.0 (01005-3-0)](https://industrialdigitaltwin.org/wp-content/uploads/2023/04/IDTA-01005-3-0_SpecificationAssetAdministrationShell_Part5_AASXPackageFileFormat.pdf)|
Copy file name to clipboardExpand all lines: server/README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ To expose it on the host on port 8080, use the option `-p 8080:80` when running
40
40
41
41
The container can be configured via environment variables:
42
42
-`API_BASE_PATH` determines the base path under which all other API paths are made available.
43
-
Default: `/api/v3.0`
43
+
Default: `/api/v3.1`
44
44
-`STORAGE_TYPE` can be one of `LOCAL_FILE_READ_ONLY` or `LOCAL_FILE_BACKEND`:
45
45
- When set to `LOCAL_FILE_READ_ONLY` (the default), the server will read and serve AASX, JSON, XML files from the storage directory.
46
46
The files are not modified, all changes done via the API are only stored in memory.
@@ -60,7 +60,7 @@ Since Windows uses backslashes instead of forward slashes in paths, you'll have
60
60
> docker run -p 8080:80 -v .\storage:/storage basyx-python-server
61
61
```
62
62
63
-
Per default, the server will use the `LOCAL_FILE_READ_ONLY` storage type and serve the API under `/api/v3.0` and read files from `/storage`. If you want to change this, you can do so like this:
63
+
Per default, the server will use the `LOCAL_FILE_READ_ONLY` storage type and serve the API under `/api/v3.1` and read files from `/storage`. If you want to change this, you can do so like this:
Here files are read from `/storage` and the server can be accessed at http://localhost:8080/api/v3.0/ from your host system.
88
+
Here files are read from `/storage` and the server can be accessed at http://localhost:8080/api/v3.1/ from your host system.
89
89
To get a different setup this compose.yaml file can be adapted and expanded.
90
90
91
91
Note that the `Dockerfile` has to be specified explicitly, as the build context must be set to the parent directory of `/server` to allow access to the local `/sdk`.
@@ -108,7 +108,7 @@ The server can also be run directly on the host system without Docker, NGINX and
108
108
$ python -m interfaces.repository
109
109
```
110
110
111
-
The server can be accessed at http://localhost:8080/api/v3.0/ from your host system.
111
+
The server can be accessed at http://localhost:8080/api/v3.1/ from your host system.
112
112
113
113
## Acknowledgments
114
114
@@ -117,8 +117,8 @@ This Dockerfile is inspired by the [tiangolo/uwsgi-nginx-docker][10] repository.
0 commit comments