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 install from (docs/architecture/MARKETPLACE.md).
58
- # Leave unset for local items only.
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). NO DEFAULT, deliberately:
96
- # a URL is never hardcoded and never a fallback, and absent config means no remote
97
- # catalogue the universe serves what it has on disk and in its rows, which is the correct
98
- # state for development and for air-gapped estates. It reaches the marketplace at install
99
- # time and at no other time.
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 install from (docs/architecture/MARKETPLACE.md).
55
- # Leave unset for local items only.
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). NO DEFAULT, deliberately:
130
- # a URL is never hardcoded and never a fallback, and absent config means no remote
131
- # catalogue the universe serves what it has on disk and in its rows, which is the correct
132
- # state for development and for air-gapped estates. It reaches the marketplace at install
133
- # time and at no other time.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.110",
3
+ "version": "0.1.111",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",