unoverse 0.1.110 → 0.1.111
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.
|
@@ -54,6 +54,6 @@ roles = [
|
|
|
54
54
|
# can bring them back. Never commit it; keep a safe copy with your database backups.
|
|
55
55
|
# To change any value: edit this file and re-render. Never hand-edit the output.
|
|
56
56
|
|
|
57
|
-
# Marketplace catalogue to
|
|
58
|
-
#
|
|
59
|
-
# marketplace_url = "https://marketplace.example.com"
|
|
57
|
+
# Marketplace catalogue. Defaults to the official one — set this only to point somewhere
|
|
58
|
+
# else, or to "" for local items only.
|
|
59
|
+
# marketplace_url = "https://your-own-marketplace.example.com"
|
|
@@ -92,15 +92,20 @@ variable "hyperbrowser_api_key" {
|
|
|
92
92
|
sensitive = true
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
# The catalogue this universe installs from (MARKETPLACE.md §5).
|
|
96
|
-
#
|
|
97
|
-
#
|
|
98
|
-
#
|
|
99
|
-
#
|
|
95
|
+
# The catalogue this universe installs from (MARKETPLACE.md §5).
|
|
96
|
+
#
|
|
97
|
+
# DEFAULTS TO THE OFFICIAL MARKETPLACE (decided 2026-08-03). It used to have none, on the
|
|
98
|
+
# rule that a URL is never hardcoded — right for a URL only the operator can know, wrong for
|
|
99
|
+
# this one: the official catalogue is the platform's own address, the same for every
|
|
100
|
+
# universe, and requiring each developer to paste it made "install from the marketplace" a
|
|
101
|
+
# setup step instead of a thing that works.
|
|
102
|
+
#
|
|
103
|
+
# Set it to your own to point elsewhere, or to "" for local items only — which is still the
|
|
104
|
+
# correct state for an air-gapped estate, and still not an error.
|
|
100
105
|
variable "marketplace_url" {
|
|
101
106
|
description = "Base URL of the marketplace catalogue. Empty = local items only."
|
|
102
107
|
type = string
|
|
103
|
-
default = ""
|
|
108
|
+
default = "https://unoverse-marketplace-4hlb9.ondigitalocean.app"
|
|
104
109
|
}
|
|
105
110
|
|
|
106
111
|
# YOUR public key, uploaded as this universe's EC2 key pair. Deploying means ssh-ing from
|
|
@@ -51,6 +51,6 @@ openai_api_key = "sk-..." # memory server + OpenAI nodes
|
|
|
51
51
|
# can bring them back. Never commit it; keep a safe copy with your database backups.
|
|
52
52
|
# To change any value: edit this file and re-render. Never hand-edit the output.
|
|
53
53
|
|
|
54
|
-
# Marketplace catalogue to
|
|
55
|
-
#
|
|
56
|
-
# marketplace_url = "https://marketplace.example.com"
|
|
54
|
+
# Marketplace catalogue. Defaults to the official one — set this only to point somewhere
|
|
55
|
+
# else, or to "" for local items only.
|
|
56
|
+
# marketplace_url = "https://your-own-marketplace.example.com"
|
|
@@ -126,13 +126,18 @@ variable "hyperbrowser_api_key" {
|
|
|
126
126
|
sensitive = true
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
# The catalogue this universe installs from (MARKETPLACE.md §5).
|
|
130
|
-
#
|
|
131
|
-
#
|
|
132
|
-
#
|
|
133
|
-
#
|
|
129
|
+
# The catalogue this universe installs from (MARKETPLACE.md §5).
|
|
130
|
+
#
|
|
131
|
+
# DEFAULTS TO THE OFFICIAL MARKETPLACE (decided 2026-08-03). It used to have none, on the
|
|
132
|
+
# rule that a URL is never hardcoded — right for a URL only the operator can know, wrong for
|
|
133
|
+
# this one: the official catalogue is the platform's own address, the same for every
|
|
134
|
+
# universe, and requiring each developer to paste it made "install from the marketplace" a
|
|
135
|
+
# setup step instead of a thing that works.
|
|
136
|
+
#
|
|
137
|
+
# Set it to your own to point elsewhere, or to "" for local items only — which is still the
|
|
138
|
+
# correct state for an air-gapped estate, and still not an error.
|
|
134
139
|
variable "marketplace_url" {
|
|
135
140
|
description = "Base URL of the marketplace catalogue. Empty = local items only."
|
|
136
141
|
type = string
|
|
137
|
-
default = ""
|
|
142
|
+
default = "https://unoverse-marketplace-4hlb9.ondigitalocean.app"
|
|
138
143
|
}
|
package/package.json
CHANGED