From b67d278bd8441259ecbbd969fc2cd3b2e7dd4541 Mon Sep 17 00:00:00 2001
From: alemi <me@alemi.dev>
Date: Wed, 22 Jan 2025 02:07:53 +0100
Subject: [PATCH] fix: default port 3000 not 300

---
 core/src/config.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/config.rs b/core/src/config.rs
index 2f9b3a8..339ee35 100644
--- a/core/src/config.rs
+++ b/core/src/config.rs
@@ -35,7 +35,7 @@ pub struct InstanceConfig {
 	/// description, shown in nodeinfo and instance actor
 	pub description: String,
 
-	#[serde_inline_default("http://127.0.0.1:300".into())]
+	#[serde_inline_default("http://127.0.0.1:3000".into())]
 	/// domain of current instance, must change this for prod
 	pub domain: String,