From 4f245dc1563c0f8692578d6cacbc39fb138769f3 Mon Sep 17 00:00:00 2001 From: Nikita Karetnikov Date: Mon, 4 Dec 2023 04:29:45 +0100 Subject: [PATCH] Switch port from 5000 to 8080 --- CONTRIBUTING.md | 4 ++-- schema/plugin.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 80b5a6f..9c16b25 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,9 +6,9 @@ Currently the pref pass-thru from the jupyterlab frontend to the underlying cond ```typescript const prefDefault: IPreferences = { - apiUrl: 'http://localhost:5000/conda-store/', + apiUrl: 'http://localhost:8080/conda-store/', authMethod: 'cookie', - loginUrl: 'http://localhost:5000/conda-store/login?next=', + loginUrl: 'http://localhost:8080/conda-store/login?next=', authToken: '', styleType: 'grayscale', showLoginIcon: true diff --git a/schema/plugin.json b/schema/plugin.json index 541b5f1..124942a 100644 --- a/schema/plugin.json +++ b/schema/plugin.json @@ -10,7 +10,7 @@ "type": "string", "title": "conda-store server url", "description": "the url (including port, if any) for your conda-store server. The conda-store server needs to already be running for the jupyterlab extension to work", - "default": "http://localhost:5000/conda-store/" + "default": "http://localhost:8080/conda-store/" }, "authMethod": { "type": "string", @@ -23,7 +23,7 @@ "type": "string", "title": "conda-store login url", "description": "if using cookie-based authentication, the path to the login page. See the conda-store auth method option", - "default": "http://localhost:5000/conda-store/login?next=" + "default": "http://localhost:8080/conda-store/login?next=" }, "authToken": { "type": "string",