Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Minor quickstart fixes #2752

Merged
merged 6 commits into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading