Skip to content

Commit

Permalink
fix: corrected plural s typo for environment workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-rm-meyer-ISST committed Nov 3, 2023
1 parent 53bbd2a commit 896a69c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/.env.dockerbuild
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VITE_APP_NAME=\$APP_NAME
VITE_BACKEND_BASE_URL=\$BACKEND_BASE_URL
VITE_ENDPOINT_MATERIALS=\$ENDPOINT_MATERIAL
VITE_ENDPOINT_MATERIALS=\$ENDPOINT_MATERIALS
VITE_ENDPOINT_PRODUCTS=\$ENDPOINT_PRODUCTS
VITE_ENDPOINT_MATERIAL_STOCKS=\$ENDPOINT_MATERIAL_STOCKS
VITE_ENDPOINT_PRODUCT_STOCKS=\$ENDPOINT_PRODUCT_STOCKS
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"APP_NAME": "$APP_NAME",
"BACKEND_BASE_URL": "$BACKEND_BASE_URL",
"ENDPOINT_MATERIALS": "$ENDPOINT_MATERIAL",
"ENDPOINT_MATERIALS": "$ENDPOINT_MATERIALS",
"ENDPOINT_PRODUCTS": "$ENDPOINT_PRODUCTS",
"ENDPOINT_MATERIAL_STOCKS": "$ENDPOINT_MATERIAL_STOCKS",
"ENDPOINT_PRODUCT_STOCKS": "$ENDPOINT_PRODUCT_STOCKS",
Expand Down
4 changes: 2 additions & 2 deletions local/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
environment:
- APP_NAME=PURIS Customer
- BACKEND_BASE_URL=http://localhost:8081/catena/
- ENDPOINT_MATERIAL=stockView/materials
- ENDPOINT_MATERIALS=stockView/materials
- ENDPOINT_PRODUCTS=stockView/products
- ENDPOINT_MATERIAL_STOCKS=stockView/material-stocks
- ENDPOINT_PRODUCT_STOCKS=stockView/product-stocks
Expand Down Expand Up @@ -159,7 +159,7 @@ services:
environment:
- APP_NAME=PURIS Customer
- BACKEND_BASE_URL=http://localhost:8082/catena/
- ENDPOINT_MATERIAL=stockView/materials
- ENDPOINT_MATERIALS=stockView/materials
- ENDPOINT_PRODUCTS=stockView/products
- ENDPOINT_MATERIAL_STOCKS=stockView/material-stocks
- ENDPOINT_PRODUCT_STOCKS=stockView/product-stocks
Expand Down

0 comments on commit 896a69c

Please sign in to comment.