-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into debugger_documentation
- Loading branch information
Showing
368 changed files
with
31,021 additions
and
17,085 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Migrate python code style to Black | ||
|
||
2d2de2d1e5167b54b253fa496d91e9a3b0b859c1 | ||
e7d4c5be7400bbe6fa5f7b59d34d07a51d15bd31 | ||
e03e94b5439bf30d0b03430980745d5adc9cc631 |
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,6 +1,6 @@ | ||
*.pyc | ||
*.pyc.* | ||
.env | ||
.env* | ||
.coverage | ||
cov.xml | ||
.venv | ||
|
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,3 @@ | ||
{ | ||
"recommendations": [ | ||
"esbenp.prettier-vscode" | ||
] | ||
} | ||
"recommendations": ["esbenp.prettier-vscode", "ms-python.black-formatter"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This file is used to build the webapp image for deployment. | ||
# The COUNTS_MSG_TYPES and DOT_NAME variables must be set in .env before building to populate | ||
# correctly in the deployed webapp as they are build-time variables. | ||
version: '3' | ||
services: | ||
cvmanager_webapp: | ||
build: | ||
context: webapp | ||
dockerfile: Dockerfile | ||
args: | ||
API_URI: ${WEBAPP_DOMAIN} # e.g. http://localhost | ||
MAPBOX_TOKEN: ${MAPBOX_TOKEN} | ||
KEYCLOAK_HOST_URL: ${KEYCLOAK_DOMAIN} # e.g. http://localhost | ||
COUNT_MESSAGE_TYPES: ${COUNTS_MSG_TYPES} | ||
DOT_NAME: ${DOT_NAME} | ||
MAPBOX_INIT_LATITUDE: ${MAPBOX_INIT_LATITUDE} | ||
MAPBOX_INIT_LONGITUDE: ${MAPBOX_INIT_LONGITUDE} | ||
MAPBOX_INIT_ZOOM: ${MAPBOX_INIT_ZOOM} | ||
image: jpo_cvmanager_webapp:latest | ||
restart: always | ||
logging: | ||
options: | ||
max-size: '10m' |
Oops, something went wrong.