mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 16:26:57 +00:00
- Deleted redeploy.sh, which handled redeployment to nodes in devnet/testnet environments. - Removed upgrade-nodes.sh, responsible for rolling upgrades of nodes. - Eliminated upload-source-fanout.sh, which uploaded source archives to nodes in parallel. - Removed upload-source.sh, used for uploading and extracting source archives to VPS nodes.
14 lines
390 B
Go
14 lines
390 B
Go
package constants
|
|
|
|
// External dependency versions used across the network.
|
|
// Single source of truth — all installer files and build scripts import from here.
|
|
const (
|
|
GoVersion = "1.24.6"
|
|
OlricVersion = "v0.7.0"
|
|
IPFSKuboVersion = "v0.38.2"
|
|
IPFSClusterVersion = "v1.1.2"
|
|
RQLiteVersion = "8.43.0"
|
|
CoreDNSVersion = "1.12.0"
|
|
CaddyVersion = "2.10.2"
|
|
)
|