File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ VERSION := $(shell curl -s https://api.github.com/repos/IBM/cbomkit/releases/lat
3
3
# set engine to use for build and compose, default to docker
4
4
ENGINE ?= docker
5
5
# build the backend
6
- build-backend : dev
6
+ build-backend :
7
7
./mvnw clean package
8
8
# build the container image for the backend
9
9
build-backend-image : build-backend
@@ -29,6 +29,10 @@ dev-frontend:
29
29
# run the prod setup using $(ENGINE) compose
30
30
production :
31
31
env CBOMKIT_VERSION=${VERSION} CBOMKIT_VIEWER=false POSTGRESQL_AUTH_USERNAME=cbomkit POSTGRESQL_AUTH_PASSWORD=cbomkit $(ENGINE ) -compose --profile prod up
32
+ edge :
33
+ $(ENGINE ) pull ghcr.io/ibm/cbomkit:edge
34
+ $(ENGINE ) pull ghcr.io/ibm/cbomkit-frontend:edge
35
+ env CBOMKIT_VERSION=edge CBOMKIT_VIEWER=false POSTGRESQL_AUTH_USERNAME=cbomkit POSTGRESQL_AUTH_PASSWORD=cbomkit $(ENGINE ) -compose --profile prod up
32
36
coeus :
33
37
env CBOMKIT_VERSION=${VERSION} CBOMKIT_VIEWER=true $(ENGINE ) -compose --profile viewer up
34
38
ext-compliance :
Original file line number Diff line number Diff line change @@ -128,6 +128,10 @@ Cryptography Bills of Materials (CBOMs). This scanning capability is provided by
128
128
129
129
#### Supported languages and libraries
130
130
131
+ > [ !WARNING]
132
+ > Python scanning is currently unavailable due to an ongoing issue. We are actively investigating a solution.
133
+ > Please monitor issue [ #138 ] ( https://github.com/IBM/cbomkit/issues/138 ) for status updates. Python project scanning has been temporarily disabled.
134
+
131
135
The current scanning capabilities of the CBOMkit are defined by the Sonar Cryptography Plugin's supported languages
132
136
and cryptographic libraries:
133
137
You can’t perform that action at this time.
0 commit comments