Merge branch 'main' of github.com:SAP/e-mobility-charging-stations-simulator
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 12 Jun 2024 20:09:50 +0000 (22:09 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 12 Jun 2024 20:09:50 +0000 (22:09 +0200)
tests/ocpp-server/README.md
tests/ocpp-server/pyproject.toml

index e2a8149c90de427c31db970401e41df9f69377e0..bb5d5b17ff3eeac70e204f3732b44eaec6e0c966 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.
index d0c6d4e4115adfdb52f0b90f69e62a26ab3c6a5a..c83625fbfa9144687440637b9c0f4bd594753d93 100644 (file)
@@ -17,6 +17,7 @@ black = "^24"
 flake8 = "^7"
 
 [tool.taskipy.tasks]
+server = "python server.py"
 format = "black . && isort ."
 lint = "black --check --diff . && isort --check --diff . && flake8 ."