This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch ui
in repository https://gitbox.apache.org/repos/asf/polaris-tools.git


The following commit(s) were added to refs/heads/ui by this push:
     new 572f21e  Rename to Polaris Console
572f21e is described below

commit 572f21eb5194c6d23cd95727536b9bddcd9a3edb
Author: JB Onofré <[email protected]>
AuthorDate: Mon Nov 3 09:29:14 2025 +0100

    Rename to Polaris Console
---
 {ui => console}/README.md          |  28 ++++++++++++++++------------
 {ui => console}/package.json       |   2 +-
 {ui => console}/public/favicon.ico | Bin
 {ui => console}/public/index.html  |   0
 {ui => console}/public/logo.png    | Bin
 {ui => console}/public/robots.txt  |   0
 {ui => console}/src/app.css        |   0
 {ui => console}/src/app.tsx        |   0
 {ui => console}/src/browse.tsx     |   0
 {ui => console}/src/catalog.tsx    |   0
 {ui => console}/src/home.tsx       |   0
 {ui => console}/src/index.css      |   0
 {ui => console}/src/index.tsx      |   0
 {ui => console}/src/login.tsx      |   0
 {ui => console}/src/principals.tsx |   0
 {ui => console}/src/settings.tsx   |   0
 {ui => console}/src/workspace.tsx  |   0
 17 files changed, 17 insertions(+), 13 deletions(-)

diff --git a/ui/README.md b/console/README.md
similarity index 61%
rename from ui/README.md
rename to console/README.md
index 0bf270c..ccc1b9c 100644
--- a/ui/README.md
+++ b/console/README.md
@@ -17,47 +17,51 @@
   - under the License.
   -->
 
-# Apache Polaris UI
+# Apache Polaris Console
 
-The Apache Polaris UI is a web console allowing you to manage a Polaris server.
+The Apache Polaris Console is a web console allowing you to manage a Polaris 
server.
 It allows you to manage Polaris catalogs, principals, catalog roles, ...
 
 You can also browse the catalog entities (namespaces, tables, ...).
 
 ## Prerequisite
 
-The Polaris UI is using `yarn` or `npm` to be built.
+The Polaris Console is using `yarn` or `npm` to be built.
 
 You have to install `yarn` or `npm` using your OS package manager (e.g. `brew 
install yarn`).
 
-## Configuring the UI to connect to a Polaris server
+## Configuring the Polaris Console to connect to a Polaris server
 
-By default, the Polaris UI connects to a local Polaris server on the port 8181 
(`http://localhost:8181`).
+By default, the Polaris Console connects to a local Polaris server on the port 
8181 (`http://localhost:8181`).
 
-If the Polaris server is not located on `localhost:8181`, you have to update 
the UI `proxy` configuration in the `package.json`:
+If the Polaris server is not located on `localhost:8181`, you have to update 
the Console `proxy` configuration in the `package.json`:
 
 ```
 "proxy": "http://localhost:8181";
 ```
 
-## Downloading the UI dependencies
+## Downloading the Polaris Console dependencies
 
-The Polaris UI uses React (https://react.dev/) and Ant Design 
(https://ant.design/) frameworks, with transitive dependencies.
+The Polaris Console uses React (https://react.dev/) and Ant Design 
(https://ant.design/) frameworks, with transitive dependencies.
 
-To download the Polaris UI dependencies, you can just do:
+To download the Polaris Console dependencies, you can just do:
 
 ```
 yarn
 ```
 
-## Starting the UI
+## Starting the Polaris Console
 
 ```
 yarn start
 ```
 
-## Building static UI
+## Building static Polaris Console
 
 ```
 yarn build
-```
\ No newline at end of file
+```
+
+## Polaris Console Docker image and Helm Charts
+
+TODO
diff --git a/ui/package.json b/console/package.json
similarity index 96%
rename from ui/package.json
rename to console/package.json
index e168a3a..b16843b 100644
--- a/ui/package.json
+++ b/console/package.json
@@ -1,5 +1,5 @@
 {
-  "name": "polaris-ui",
+  "name": "polaris-console",
   "version": "1.3.0-incubating-SNAPSHOT",
   "main": "/index.tsx",
   "dependencies": {
diff --git a/ui/public/favicon.ico b/console/public/favicon.ico
similarity index 100%
rename from ui/public/favicon.ico
rename to console/public/favicon.ico
diff --git a/ui/public/index.html b/console/public/index.html
similarity index 100%
rename from ui/public/index.html
rename to console/public/index.html
diff --git a/ui/public/logo.png b/console/public/logo.png
similarity index 100%
rename from ui/public/logo.png
rename to console/public/logo.png
diff --git a/ui/public/robots.txt b/console/public/robots.txt
similarity index 100%
rename from ui/public/robots.txt
rename to console/public/robots.txt
diff --git a/ui/src/app.css b/console/src/app.css
similarity index 100%
rename from ui/src/app.css
rename to console/src/app.css
diff --git a/ui/src/app.tsx b/console/src/app.tsx
similarity index 100%
rename from ui/src/app.tsx
rename to console/src/app.tsx
diff --git a/ui/src/browse.tsx b/console/src/browse.tsx
similarity index 100%
rename from ui/src/browse.tsx
rename to console/src/browse.tsx
diff --git a/ui/src/catalog.tsx b/console/src/catalog.tsx
similarity index 100%
rename from ui/src/catalog.tsx
rename to console/src/catalog.tsx
diff --git a/ui/src/home.tsx b/console/src/home.tsx
similarity index 100%
rename from ui/src/home.tsx
rename to console/src/home.tsx
diff --git a/ui/src/index.css b/console/src/index.css
similarity index 100%
rename from ui/src/index.css
rename to console/src/index.css
diff --git a/ui/src/index.tsx b/console/src/index.tsx
similarity index 100%
rename from ui/src/index.tsx
rename to console/src/index.tsx
diff --git a/ui/src/login.tsx b/console/src/login.tsx
similarity index 100%
rename from ui/src/login.tsx
rename to console/src/login.tsx
diff --git a/ui/src/principals.tsx b/console/src/principals.tsx
similarity index 100%
rename from ui/src/principals.tsx
rename to console/src/principals.tsx
diff --git a/ui/src/settings.tsx b/console/src/settings.tsx
similarity index 100%
rename from ui/src/settings.tsx
rename to console/src/settings.tsx
diff --git a/ui/src/workspace.tsx b/console/src/workspace.tsx
similarity index 100%
rename from ui/src/workspace.tsx
rename to console/src/workspace.tsx

Reply via email to