-
Notifications
You must be signed in to change notification settings - Fork 4
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A very nice cleanup of file we didnt need + improving ease of use when setting up the project from scratch
Github workflows still seem to be failing, are they now building both an backoffice image and an airflow image?
backoffice/config/api_router.py
Outdated
@@ -17,9 +17,13 @@ | |||
router.register("users", UserViewSet) | |||
|
|||
# Workflows | |||
router.register("workflows/authors", AuthorWorkflowViewSet, basename="workflows-authors"), | |||
router.register( | |||
"workflows/authors", AuthorWorkflowViewSet, basename="workflows-authors" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did black
find these lines too long? Seems like many files have been simply formatted
@@ -0,0 +1,10 @@ | |||
[ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these fixtures are great additions, that greatly improve quality of live when having to create everything from scratch, thanks!
@@ -149,6 +149,7 @@ django-elasticsearch-dsl-drf = {git = "https://github.com/cern-sis/django-elasti | |||
opensearch-dsl = "^2.1.0" | |||
opensearch-py = "2.6.0" | |||
djangorestframework-simplejwt = "^5.3.1" | |||
django-json-widget = "^2.0.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems thattThis APP is not being used
# In order to add custom dependencies or upgrade provider packages you can use your extended image. | ||
# Comment the image line, place your Dockerfile in the directory where you placed the docker-compose.yaml | ||
# and uncomment the "build" line below, Then run `docker-compose build` to build the images. | ||
image: apache/airflow:2.8.3-python3.11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line should be commented, if we specify a build
below
No description provided.