server: fix port

This commit is contained in:
k
2024-07-20 23:18:49 +02:00
parent 6eb4b51168
commit 5611459f03
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import { createRWS } from "/src/solid/rws";
import { HEIGHT_CHUNK_SIZE } from ".";
const USE_LOCAL_URL = true;
const LOCAL_URL = "http://localhost:3111";
const LOCAL_URL = "http://localhost:3110";
const WEB_URL = "https://api.satonomics.xyz";
const BACKUP_WEB_URL = "https://api-bkp.satonomics.xyz";
+1 -1
View File
@@ -56,7 +56,7 @@ async fn main() -> color_eyre::Result<()> {
.with_state(state)
.layer(compression_layer);
let port = 3111;
let port = 3110;
log(&format!("Starting server on port {port}..."));