mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 22:39:46 +00:00
change default registry based on 'beta' feature flag, make 'beta' default for now
This commit is contained in:
committed by
Aiden McClelland
parent
d3ab3cb46b
commit
cc0535ad5b
@@ -38,7 +38,8 @@ path = "src/bin/embassy-cli.rs"
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
avahi = ["avahi-sys"]
|
avahi = ["avahi-sys"]
|
||||||
default = ["avahi", "sound", "metal"]
|
beta = []
|
||||||
|
default = ["avahi", "beta", "sound", "metal"]
|
||||||
metal = []
|
metal = []
|
||||||
sound = []
|
sound = []
|
||||||
unstable = ["patch-db/unstable"]
|
unstable = ["patch-db/unstable"]
|
||||||
|
|||||||
@@ -51,7 +51,10 @@ impl Database {
|
|||||||
.parse()
|
.parse()
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
status: ServerStatus::Running {},
|
status: ServerStatus::Running {},
|
||||||
|
#[cfg(not(feature = "beta"))]
|
||||||
eos_marketplace: "https://registry.start9.com".parse().unwrap(),
|
eos_marketplace: "https://registry.start9.com".parse().unwrap(),
|
||||||
|
#[cfg(feature = "beta")]
|
||||||
|
eos_marketplace: "https://beta-registry-0-3.start9labs.com".parse().unwrap(),
|
||||||
package_marketplace: None,
|
package_marketplace: None,
|
||||||
wifi: WifiInfo {
|
wifi: WifiInfo {
|
||||||
ssids: Vec::new(),
|
ssids: Vec::new(),
|
||||||
|
|||||||
Reference in New Issue
Block a user