Skip to content

Commit

Permalink
Simplify folders names (without "-service")
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-benoit authored May 3, 2024
1 parent d736851 commit b2a51e2
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
score-validate:
strategy:
matrix:
apps: ["order-service", "product-service", "store-front", "makeline-service", "store-admin"]
apps: ["order", "product", "store-front", "makeline", "store-admin"]
runs-on: ubuntu-22.04
env:
HUMCTL_VERSION: '0.23.1'
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ help:
.PHONY: .FORCE
.FORCE:

compose.yaml: apps/order-service/score.yaml apps/product-service/score.yaml apps/store-front/score.yaml apps/store-admin/score.yaml apps/makeline-service/score.yaml
compose.yaml: apps/order/score.yaml apps/product/score.yaml apps/store-front/score.yaml apps/store-admin/score.yaml apps/makeline/score.yaml
score-compose init \
--no-sample
score-compose generate \
apps/order-service/score.yaml \
apps/product-service/score.yaml \
apps/order/score.yaml \
apps/product/score.yaml \
apps/store-front/score.yaml \
apps/store-admin/score.yaml \
apps/makeline-service/score.yaml
apps/makeline/score.yaml

## Generate a compose.yaml file from the score specs and launch it.
.PHONY: compose-up
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions apps/score.deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apiVersion: config.humanitec.io/v1b1
kind: ScoreDeployConfig
workloads:
- specFile: ./order-service/score.yaml
extensionsFile: ./order-service/humanitec.score.yaml
- specFile: ./product-service/score.yaml
extensionsFile: ./product-service/humanitec.score.yaml
- specFile: ./order/score.yaml
extensionsFile: ./order/humanitec.score.yaml
- specFile: ./product/score.yaml
extensionsFile: ./product/humanitec.score.yaml
- specFile: ./store-front/score.yaml
extensionsFile: ./store-front/humanitec.score.yaml
- specFile: ./makeline-service/score.yaml
extensionsFile: ./makeline-service/humanitec.score.yaml
- specFile: ./makeline/score.yaml
extensionsFile: ./makeline/humanitec.score.yaml
- specFile: ./store-admin/score.yaml
extensionsFile: ./store-admin/humanitec.score.yaml

0 comments on commit b2a51e2

Please sign in to comment.