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
This is the repository of the Building Management microservice of the Smart Operating Block project.
6
15
@@ -11,3 +20,19 @@ You need to specify the following environment variable:
11
20
-`AZURE_CLIENT_SECRET`: the application's client secrets
12
21
-`AZURE_DT_ENDPOINT`: the Azure Digital Twins instance endpoint
13
22
-`MONGODB_CONNECTION_STRING`: the mongodb's connection string
23
+
-`BOOTSTRAP_SERVER_URL`: the kafka connection endpoint
24
+
-`SCHEMA_REGISTRY_URL`: the schema registry url
25
+
26
+
If you want to run it via docker container:
27
+
1. Provide a `.env` file with all the environment variable described above
28
+
2. Run the container with the command:
29
+
```bash
30
+
docker run ghcr.io/smartoperatingblock/building-management-microservice:latest
31
+
```
32
+
1. If you want to try the REST-API from the external you need to provide a port mapping to port 3000.
33
+
2. If you want to pass an environment file whose name is different from `.env` use the `--env-file <name>` parameter.
34
+
35
+
## Documentation
36
+
- Check out the website [here](https://smartoperatingblock.github.io/building-management-microservice/)
37
+
- Direct link to the *REST-API* documentation [here](https://smartoperatingblock.github.io/building-management-microservice/documentation/openapi-doc/)
38
+
- Direct link to the *Code* documentation [here](https://smartoperatingblock.github.io/building-management-microservice/documentation/code-doc/)
0 commit comments