Skip to content

Commit 0bc452f

Browse files
committed
bugfix - fixing make commands, sandbox specification
1 parent 698f1fb commit 0bc452f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ set-ratelimit: guard-APIM_ENV
112112
< specification/x-nhsd-apim/ratelimit-template.yaml > specification/x-nhsd-apim/ratelimit.yaml
113113

114114
update-spec-template: guard-APIM_ENV
115-
ifeq ($(APIM_ENV), $(filter $(APIM_ENV), sandbox internal-dev int ref preprod prod ))
115+
ifeq ($(APIM_ENV), $(filter $(APIM_ENV), sandbox internal-dev test int ref preprod prod ))
116116
@ $(MAKE) set-target APIM_ENV=$$APIM_ENV
117117
@ $(MAKE) set-access APIM_ENV=$$APIM_ENV
118118
@ $(MAKE) set-security APIM_ENV=$$APIM_ENV

sandbox/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ list:
66
@grep '^[^#[:space:]].*:' Makefile
77

88
build:
9-
docker-compose -f docker-compose.yaml build
9+
docker compose -f docker-compose.yaml build
1010

1111
up: build
12-
docker-compose -f docker-compose.yaml up -d
12+
docker compose -f docker-compose.yaml up -d
1313

1414
down:
15-
docker-compose -f docker-compose.yaml down
15+
docker compose -f docker-compose.yaml down
1616

1717
clean:
1818
rm -rf ./node_modules
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
$ref: https://proxygen.prod.api.platform.nhs.uk/components/securitySchemes/app-level0
1+
$ref: https://proxygen.prod.api.platform.nhs.uk/components/securitySchemes/nhs-login-p9

specification/eligibility-signposting-api.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ paths:
2525
Determines which suggestions a person is eligible for and which they are
2626
not, including reasons and next steps.
2727
security:
28-
- environment-specific-secured: []
28+
- nhs-login-p9: []
2929
operationId: checkEligibility
3030
parameters:
3131
- name: id
@@ -766,8 +766,8 @@ paths:
766766
################################################################################
767767
components:
768768
securitySchemes:
769-
environment-specific-secured:
770-
$ref: "components/security/security.yaml"
769+
nhs-login-p9:
770+
$ref: "components/security/security.yaml"
771771
x-nhsd-apim:
772772
access:
773773
$ref: "x-nhsd-apim/access.yaml"

0 commit comments

Comments
 (0)