Skip to content

Commit

Permalink
Merge pull request #30 from nkaretnikov/new-port
Browse files Browse the repository at this point in the history
Switch port from 5000 to 8080
  • Loading branch information
nkaretnikov authored Dec 4, 2023
2 parents 1d56d42 + 4f245dc commit 159856b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions schema/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 159856b

Please sign in to comment.