From ffeb56fc7e59632bf64847ed40254128860e7824 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Wed, 21 Sep 2022 01:03:38 +0100 Subject: [PATCH] Redirect to temporary website holding page for app interface Closes #219 --- src/cnf/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cnf/mod.rs b/src/cnf/mod.rs index 8f2cbd83..fd32d6f3 100644 --- a/src/cnf/mod.rs +++ b/src/cnf/mod.rs @@ -18,7 +18,7 @@ pub const PKG_VERS: &str = env!("CARGO_PKG_VERSION"); pub const SERVER_NAME: &str = "SurrealDB"; // The public endpoint for the database administration interface -pub const APP_ENDPOINT: &str = "https://app.surrealdb.com"; +pub const APP_ENDPOINT: &str = "https://surrealdb.com/app"; // Specifies how many concurrent jobs can be buffered in the worker channel. pub const MAX_CONCURRENT_CALLS: usize = 24;