-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
823dce5
commit 1877cd6
Showing
9 changed files
with
56 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
package config | ||
|
||
type Config struct { | ||
ProjectID string | ||
DripEnv string | ||
SelfOrigin string | ||
ProjectID string | ||
DripEnv string | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Dev Cloud Run | ||
|
||
apiVersion: serving.knative.dev/v1 | ||
kind: Service | ||
metadata: | ||
name: staging-comfy-backend | ||
spec: | ||
template: | ||
metadata: | ||
annotations: | ||
autoscaling.knative.dev/min-scale: "1" | ||
spec: | ||
containers: | ||
- image: registry-backend-image-substitute | ||
env: | ||
- name: DRIP_ENV | ||
value: staging | ||
- name: DB_CONNECTION_STRING | ||
valueFrom: | ||
secretKeyRef: | ||
key: 1 | ||
name: STAGING_SUPABASE_CONNECTION_STRING | ||
- name: PROJECT_ID | ||
value: dreamboothy | ||
# TODO(robinhuang): Switch to a list of strings | ||
- name: CORS_ORIGIN | ||
value: https://staging.comfyregistry.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters