-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Notebooks work - Links between notebooks work - Deeplinking notebooks works in dev mode with proxy - Does not work in production - would need server to correctly proxy URLs and write the correct document base - Embed-grid works - Embed-chart works - Plugins work - Fixes #1070 - Unit tests and e2e tests pass - Tested in both a dev build, and production build - Tested following steps in #1070 - Tested in DnD, ensured the correct paths were being loaded
- Loading branch information
Showing
35 changed files
with
190 additions
and
115 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
# Location of the iris script and API server | ||
# Set this value to __mocks__ to use mock server instead | ||
BASE_URL=/ide/ | ||
VITE_CORE_API_URL=/jsapi | ||
# Path at which the app is served | ||
# https://vitejs.dev/guide/build.html#public-base-path | ||
BASE_URL=./ | ||
|
||
# Location of the core JS API and API server | ||
# We assume that the jsapi is served up as a sibling of the code studio | ||
# I.e. Web UI served at http://www.example.com/ide/, then JS API served at http://www.example.com/jsapi/ | ||
# This path is relative to the base URL, so we need to go up one level | ||
VITE_CORE_API_URL=../jsapi | ||
VITE_CORE_API_NAME=dh-core.js | ||
VITE_PLUGIN_URL=/ide/plugins/ | ||
|
||
# Path to plugins that load a module | ||
# See https://github.com/deephaven/deephaven-js-plugin-template/ | ||
# Like the CORE_API_URL, we assume this is served up as a sibling of the code studio | ||
VITE_MODULE_PLUGINS_URL=../js-plugins | ||
|
||
# Path for notebooks and layouts storage on the gRPCStorageService | ||
# Note these are not URLs, these are file system paths on the server in the gRPCStorageService | ||
VITE_STORAGE_PATH_NOTEBOOKS=/notebooks | ||
VITE_STORAGE_PATH_LAYOUTS=/layouts | ||
|
||
# Any routes we define here | ||
VITE_ROUTE_NOTEBOOKS=notebooks/ | ||
|
||
# Proxy used by Vite | ||
VITE_PROXY_URL=http://localhost:10000 | ||
VITE_NOTEBOOKS_URL=/notebooks | ||
VITE_LAYOUTS_URL=/layouts | ||
VITE_ENABLE_LOG_PROXY=true | ||
VITE_SUPPORT_LINK=https://github.com/deephaven/web-client-ui/ | ||
VITE_DOCS_LINK=https://deephaven.io/core/docs/ | ||
VITE_FAVICON=/favicon-cc-app.svg | ||
VITE_BUILD_PATH=./build | ||
VITE_LOG_LEVEL=2 | ||
|
||
# Plugin URLs | ||
## Path to plugins that load/render as a component (e.g. Table plugins) | ||
## See https://github.com/deephaven/js-plugin-template/ for templates | ||
VITE_COMPONENT_PLUGINS_URL=/ide/plugins/ | ||
|
||
## Path to plugins that load a module | ||
## See https://github.com/deephaven/deephaven-js-plugin-template/ | ||
VITE_MODULE_PLUGINS_URL=/js-plugins | ||
# Proxy the log service to store logs to export easily for support | ||
VITE_ENABLE_LOG_PROXY=true | ||
VITE_LOG_LEVEL=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
BASE_URL=/ide/ | ||
VITE_LOG_LEVEL=4 | ||
VITE_ENABLE_LOG_PROXY=false | ||
VITE_FAVICON=/favicon-cc-app-dev.svg | ||
|
||
BASE_URL=/ | ||
PORT=4000 | ||
VITE_LOG_LEVEL=4 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.