-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Previous code would still process the incoming mqtt message if the schema was rejected, so that was fixed. Also, the slac_timeout was included in the wrong field of the read function * Due to a bug in poetry, the username and password of the private repo needs to be specified in the url * adapted the time sleep for the ev simulator * removed timeout incorrect config * changed sleep time in ev simu * reverted username/pass change to allow CI to pass (test) * added CWD to the path to the .env file to avoid issues when starting the lib as if the module is installed in the env, environs tries to fetch the .env from the directory where it was installed and not from the one where the application was started * added option to set the path to the .env file of the system * fixed README, removed unused env settings and removed network_mode host from prod yml * Added a recipe to start the code with elevated privileges and adapted the README * added recipe to start the ev simulation of slac * reformatted code * reformatted code * removed sed from make poetry-update and refactored install-local
- Loading branch information
Showing
14 changed files
with
198 additions
and
92 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: '3.8' | ||
services: | ||
slac: | ||
env_file: .env.dev | ||
env_file: .env.dev.docker |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
version: '3.9' | ||
services: | ||
slac: | ||
network_mode: host | ||
env_file: .env |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,3 @@ services: | |
- PYPI_USER=${PYPI_USER} | ||
- PYPI_PASS=${PYPI_PASS} | ||
dockerfile: Dockerfile | ||
env_file: .env.dev | ||
|
Oops, something went wrong.