Skip to content

Commit

Permalink
fixing the vscode workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
jurabek committed Feb 6, 2024
1 parent 0c2036b commit 009fd0a
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 78 deletions.
152 changes: 75 additions & 77 deletions src/backend/backend.code-workspace
Original file line number Diff line number Diff line change
@@ -1,80 +1,78 @@
{
"folders": [
{
"name": "github",
"path": "../../.github"
},

{
"name": "checkout-api",
"path": "./services/checkout-api"
},
{
"name": "payment-api",
"path": "./services/payment-api"
},
{
"name": "cart-api",
"path": "./services/cart-api"
},
{
"name": "identity-api",
"path": "./services/identity-api"
},
{
"name": "catalog-api",
"path": "./services/catalog-api"
},
{
"name": "order-api",
"path": "./services/order-api"
},
"folders": [
{
"name": "github",
"path": "../../.github"
},

{
"name": "dashboard-app",
"path": "./web/web.admin/dashboard"
},
{
"name": "react-web",
"path": "./web/web.client"
},
{
"path": "./scripts"
},
{
"path": "./services/protobuff"
},
{
"path": "./load-tests"
},
{
"name": "k8s-kustomize",
"path": "../../k8s-kustomize"
},
{
"name": "docker",
"path": "./docker"
},
{
"name": "nginx",
"path": "./nginx"
}
],
"settings": {
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"java.configuration.updateBuildConfiguration": "interactive",
"dotenv.enableAutocloaking": false,
"java.compile.nullAnalysis.mode": "automatic",
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": "file:///Users/jurabek/dev/Restaurant-App/.github/workflows/deploy.yml"
},
"cSpell.words": [
"pino"
]
}
{
"name": "checkout-api",
"path": "./services/checkout-api"
},
{
"name": "payment-api",
"path": "./services/payment-api"
},
{
"name": "cart-api",
"path": "./services/cart-api"
},
{
"name": "identity-api",
"path": "./services/identity-api"
},
{
"name": "catalog-api",
"path": "./services/catalog-api"
},
{
"name": "order-api",
"path": "./services/order-api"
},

{
"name": "dashboard-app",
"path": "./web/web.admin/dashboard"
},
{
"name": "frontend",
"path": "./services/web-app"
},
{
"path": "./scripts"
},
{
"path": "./services/protobuff"
},
{
"path": "./load-tests"
},
{
"name": "k8s-kustomize",
"path": "../../k8s-kustomize"
},
{
"name": "docker",
"path": "./docker"
},
{
"name": "nginx",
"path": "./nginx"
}
],
"settings": {
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"java.configuration.updateBuildConfiguration": "interactive",
"dotenv.enableAutocloaking": false,
"java.compile.nullAnalysis.mode": "automatic",
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": "file:///Users/jurabek/dev/Restaurant-App/.github/workflows/deploy.yml"
},
"cSpell.words": ["pino"]
}
}
2 changes: 1 addition & 1 deletion src/backend/services/checkout-api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20
FROM node:20-alpine

WORKDIR /usr/src/app

Expand Down

0 comments on commit 009fd0a

Please sign in to comment.