build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / tests / ocpp-server / README.md
index e2a8149c90de427c31db970401e41df9f69377e0..b0ddd9b7d3857c8c15878a2ff43a9b35f766a71b 100644 (file)
@@ -15,7 +15,7 @@ poetry install
 To start the server, run the `server.py` script:
 
 ```shell
-python server.py
+poetry run task server
 ```
 
 The server will start listening for connections on port 9000.
@@ -24,9 +24,9 @@ The server will start listening for connections on port 9000.
 
 ### Server.py
 
-The server script waits for connections from clients. When a client connects, the server creates a new instance of the `ChargePoint` class. This class includes methods for handling various OCPP actions (`BootNotification`,`GetBaseReport`), most of which return a dummy response. The `GetBaseReport` method prints the received request and returns a simple confirmation message.
+The server script waits for connections from clients. When a client connects, the server creates a new instance of the `ChargePoint` class. This class includes methods for handling various OCPP messages, most of which return a dummy response.
 
-The server script uses the websockets and ocpp libraries to facilitate the WebSocket and OCPP communication.
+The server script uses the `websockets` and `ocpp` libraries to facilitate the implementation.
 
 ## Development