Skip to content

Commit 49572e9

Browse files
committed
chore: default proxy duckt server url to prod api
1 parent b194b93 commit 49572e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

proxy/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ docker-push-arm64: configure docker-tag-arm64
1717
docker-build:
1818
docker build --platform linux/amd64 -t duckt-proxy:local .
1919

20-
docker-tag: docker-build configure
20+
docker-tag: configure docker-build
2121
docker tag duckt-proxy:local duckthq/proxy:$(VERSION)
2222
docker tag duckt-proxy:local duckthq/proxy:latest
2323

proxy/src/proxy/appconfig.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
(or (System/getenv "PROXY_PORT") "4445"))
77

88
(def duckt-server-url
9-
(System/getenv "DUCKT_SERVER_URL"))
9+
(or (System/getenv "DUCKT_SERVER_URL") "https://api.duckt.dev"))
1010

1111
;; token format: base64 encoded string of the form "<version>:<proxy-uuid>:<secret>"
1212
(def proxy-token

0 commit comments

Comments
 (0)