Skip to content

Commit

Permalink
fix: Minor quickstart fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Matvey-Kuk committed Dec 4, 2024
1 parent f976451 commit edeb678
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/development/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,14 @@ code .
{
"version": "2.0.0",
"tasks": [
# The API and UI containers needs to be in the same docker network
// The API and UI containers needs to be in the same docker network
{
"label": "docker-create-network",
"type": "shell",
"command": "docker network create keep-network || true",
"problemMatcher": []
},
# Build the api container
// Build the api container
{
"label": "docker-build-api-dev",
"type": "docker-build",
Expand All @@ -202,7 +202,7 @@ code .
"tag": "keep-api-dev:latest"
}
},
# Run the api container
// Run the api container
{
"label": "docker-run-api-dev",
"type": "docker-run",
Expand Down Expand Up @@ -239,7 +239,7 @@ code .
]
}
},
# Build the UI container
// Build the UI container
{
"label": "docker-build-ui",
"type": "docker-build",
Expand All @@ -249,7 +249,7 @@ code .
"tag": "keep-ui-dev:latest"
}
},
# Run the UI container
// Run the UI container
{
"type": "docker-run",
"label": "docker-run-ui",
Expand All @@ -264,7 +264,7 @@ code .
// Uncomment for fully debug
// "DEBUG": "*",
"NODE_ENV": "development",
"API_URL": "http://keep-api:8080"
"API_URL": "http://keep-api:8080",
"AUTH_TYPE": "SINGLE_TENANT",
},
"volumes": [
Expand Down

0 comments on commit edeb678

Please sign in to comment.