- Notifications
You must be signed in to change notification settings - Fork928
feat: use app wildcards for apps if configured#4263
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
dbb2e0e
c8d2da9
5bd46a9
35596a7
6a8339e
4d75f5c
e51f69d
ea0a38f
4f6ab19
e4e8663
26b5e57
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- Add column relative_path of type bool to workspace_apps | ||
ALTER TABLE "workspace_apps" ADD COLUMN "relative_path" bool NOT NULL DEFAULT false; | ||
-- Set column relative_path to the opposite of subdomain | ||
UPDATE "workspace_apps" SET "relative_path" = NOT "subdomain"; | ||
-- Drop column subdomain | ||
ALTER TABLE "workspace_apps" DROP COLUMN "subdomain"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- Add column subdomain of type bool to workspace_apps | ||
ALTER TABLE "workspace_apps" ADD COLUMN "subdomain" bool NOT NULL DEFAULT false; | ||
-- Set column subdomain to the opposite of relative_path | ||
UPDATE "workspace_apps" SET "subdomain" = NOT "relative_path"; | ||
-- Drop column relative_path | ||
ALTER TABLE "workspace_apps" DROP COLUMN "relative_path"; |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -20,7 +20,7 @@ INSERT INTO | ||
icon, | ||
command, | ||
url, | ||
subdomain, | ||
healthcheck_url, | ||
healthcheck_interval, | ||
healthcheck_threshold, | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -2,7 +2,7 @@ terraform { | ||
required_providers { | ||
coder = { | ||
source = "coder/coder" | ||
version = "0.5.0" | ||
} | ||
} | ||
} | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -2,7 +2,7 @@ terraform { | ||
required_providers { | ||
coder = { | ||
source = "coder/coder" | ||
version = "0.5.0" | ||
} | ||
} | ||
} | ||
Uh oh!
There was an error while loading.Please reload this page.