-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start populating docker-compose for the 201 demo #19
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@jhoshiko for visibility |
This is currently largely a copy of the 16J docker compose except it is running the 201 SIL instead of the 1.6J SIL. The `ocppCsmsUrl` is set incorrectly, so it will not be able to connect to anything but seems to start up fine otherwise. Signed-off-by: Shankari <[email protected]>
Copied directly from libocpp with no changes. Signed-off-by: Shankari <[email protected]>
Instead of localhost Since we don't have all the services in a single Dockerfile Signed-off-by: Shankari <[email protected]>
…et of containers The CSMS URL is now read from the `device_model_storage.db` instead of directly from the config file. We can generate the model storage by using something along these lines: https://github.com/EVerest/libocpp/blob/main/config/v201/init_device_model_db.py ``` python3 "libocpp/config/v201/init_device_model_db.py" \ --db "path/to/your/device_model_storage.db" \ --config "path/to/your/config.json" \ --schemas "libocpp/config/v201/component_schemas/" \ init insert ``` But for now, let's use a string hardcoded to work with Maeve Signed-off-by: Shankari <[email protected]>
…rately Signed-off-by: Shankari <[email protected]>
… portal Signed-off-by: Joshua Hoshiko <[email protected]> Signed-off-by: Shankari <[email protected]>
…solution Signed-off-by: Shankari <[email protected]>
Signed-off-by: Shankari <[email protected]>
shankari
force-pushed
the
ocpp_201_example
branch
from
March 7, 2024 06:08
52781f4
to
76dd6d3
Compare
Signed-off-by: K. Shankari <[email protected]>
Signed-off-by: Shankari <[email protected]>
…-demo into ocpp_201_example
Signed-off-by: Shankari <[email protected]>
The one code analysis error is with which is copied verbatim from the other files, so let's ignore it for now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is currently largely a copy of the 16J docker compose except it is running the 201 SIL instead of the 1.6J SIL. The
ocppCsmsUrl
is set incorrectly, so it will not be able to connect to anything but seems to start up fine otherwise.