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: replace SINGLE_TENANT with DB #3078

Merged
merged 2 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docker-compose-with-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
service: keep-frontend-common
image: us-central1-docker.pkg.dev/keephq/keep/keep-ui
environment:
- AUTH_TYPE=SINGLE_TENANT
- AUTH_TYPE=DB
- API_URL=http://keep-backend:8080
volumes:
- ./state:/state
Expand All @@ -18,7 +18,7 @@ services:
service: keep-backend-common
image: us-central1-docker.pkg.dev/keephq/keep/keep-api
environment:
- AUTH_TYPE=SINGLE_TENANT
- AUTH_TYPE=DB
- KEEP_JWT_SECRET=verysecretkey
- KEEP_DEFAULT_USERNAME=keep
- KEEP_DEFAULT_PASSWORD=keep
Expand Down
8 changes: 4 additions & 4 deletions docs/development/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ code .
"DEBUG": "1",
"SECRET_MANAGER_TYPE": "FILE",
"USE_NGROK": "false",
"AUTH_TYPE": "SINGLE_TENANT"
"AUTH_TYPE": "DB"
},
"volumes": [
{
Expand Down Expand Up @@ -265,7 +265,7 @@ code .
// "DEBUG": "*",
"NODE_ENV": "development",
"API_URL": "http://keep-api:8080",
"AUTH_TYPE": "SINGLE_TENANT",
"AUTH_TYPE": "DB",
},
"volumes": [
{
Expand Down Expand Up @@ -336,7 +336,7 @@ code .
"DEBUG": "1",
"SECRET_MANAGER_TYPE": "FILE",
"USE_NGROK": "false",
"AUTH_TYPE": "SINGLE_TENANT"
"AUTH_TYPE": "DB"
},
"volumes": [
{
Expand All @@ -362,7 +362,7 @@ code .
// "DEBUG": "*",
"NODE_ENV": "development",
"API_URL": "http://keep-api:8080",
"AUTH_TYPE": "SINGLE_TENANT"
"AUTH_TYPE": "DB"
},
"volumes": [
{
Expand Down
Loading