unoverse 0.1.121 → 0.1.122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/operator/docker-compose.yml +16 -0
- package/package.json +1 -1
|
@@ -184,7 +184,15 @@ services:
|
|
|
184
184
|
# configures.
|
|
185
185
|
- AUTH_ENABLED=${AUTH_ENABLED:-}
|
|
186
186
|
- AUTH_ISSUER=${AUTH_ISSUER:-}
|
|
187
|
+
# AND SO DOES THE CLIENT ID. It is documented everywhere as a browser value
|
|
188
|
+
# (VITE_AUTH_CLIENT_ID) because for a long time only the browser needed it. The
|
|
189
|
+
# server needs it now: `/.well-known/unoverse-universe` is how Studio learns where
|
|
190
|
+
# to send someone to sign in, and it answers from AUTH_CLIENT_ID. Unforwarded, that
|
|
191
|
+
# endpoint returned `clientId: null` and Studio correctly refused to connect,
|
|
192
|
+
# against a universe whose .env had the value all along. Public by definition — an
|
|
193
|
+
# OAuth client id is not a secret.
|
|
187
194
|
- AUTH_AUDIENCE=${AUTH_AUDIENCE:-}
|
|
195
|
+
- AUTH_CLIENT_ID=${AUTH_CLIENT_ID:-}
|
|
188
196
|
# WHERE THE MARKETPLACE IS. The catalogue this universe can install from, served as
|
|
189
197
|
# static files (catalogue.json plus each item's own definition). No default: a baked
|
|
190
198
|
# URL ties the image to one deployment and hides a missing setting. Empty means no
|
|
@@ -306,7 +314,15 @@ services:
|
|
|
306
314
|
# configures.
|
|
307
315
|
- AUTH_ENABLED=${AUTH_ENABLED:-}
|
|
308
316
|
- AUTH_ISSUER=${AUTH_ISSUER:-}
|
|
317
|
+
# AND SO DOES THE CLIENT ID. It is documented everywhere as a browser value
|
|
318
|
+
# (VITE_AUTH_CLIENT_ID) because for a long time only the browser needed it. The
|
|
319
|
+
# server needs it now: `/.well-known/unoverse-universe` is how Studio learns where
|
|
320
|
+
# to send someone to sign in, and it answers from AUTH_CLIENT_ID. Unforwarded, that
|
|
321
|
+
# endpoint returned `clientId: null` and Studio correctly refused to connect,
|
|
322
|
+
# against a universe whose .env had the value all along. Public by definition — an
|
|
323
|
+
# OAuth client id is not a secret.
|
|
309
324
|
- AUTH_AUDIENCE=${AUTH_AUDIENCE:-}
|
|
325
|
+
- AUTH_CLIENT_ID=${AUTH_CLIENT_ID:-}
|
|
310
326
|
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
|
|
311
327
|
- WORKFLOW_SERVICE_URL=http://unoverse:4101
|
|
312
328
|
labels:
|
package/package.json
CHANGED