diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 6b743643e..536bfab03 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -3,6 +3,7 @@ import { defineConfig } from 'vitepress' export default defineConfig({ title: "Paimon Web", description: "Web UI for Apache Paimon", + themeConfig: { logo: "/favicon_blue.svg", nav: [ @@ -28,6 +29,10 @@ export default defineConfig({ socialLinks: [ { icon: 'github', link: 'https://github.com/apache/paimon-webui' } - ] + ], + + footer: { + copyright: 'Copyright © 2024 The Apache Software Foundation. Apache Paimon, Paimon, and its feather logo are trademarks of The Apache Software Foundation.' + } } }) diff --git a/docs/index.md b/docs/index.md index 0a7b7555b..092316003 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,22 +1,20 @@ - ---- + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + layout: home hero: diff --git a/docs/public/img/img_1.png b/docs/public/img/img_1.png index c14092448..a507eb724 100644 Binary files a/docs/public/img/img_1.png and b/docs/public/img/img_1.png differ diff --git a/docs/public/img/img_2.png b/docs/public/img/img_2.png index 1a3c93383..85b14500b 100644 Binary files a/docs/public/img/img_2.png and b/docs/public/img/img_2.png differ diff --git a/docs/src/guide/about.md b/docs/src/guide/about.md index ba6c4a0d0..41ca971a9 100644 --- a/docs/src/guide/about.md +++ b/docs/src/guide/about.md @@ -1,21 +1,20 @@ - + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--- # About Paimon Web Paimon Web, the Web UI for Apache Paimon, enhances the management of Paimon table information through advanced visualization capabilities. diff --git a/docs/src/guide/quick-start.md b/docs/src/guide/quick-start.md index 0d6b7fcbc..e037ce7bd 100644 --- a/docs/src/guide/quick-start.md +++ b/docs/src/guide/quick-start.md @@ -1,21 +1,20 @@ - +--- +license: | + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + https://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--- # Quick Start This brief tutorial will guide you through the steps to deploy and utilize Paimon Web effectively. @@ -66,7 +65,7 @@ These changes will ensure that Paimon Web runs smoothly with your specific setup To configure the environment for your application, follow these steps: -1. **Set Environment Variables**: Modify the `env.sh` script located in the `bin` directory. You'll need to configure variables such as `FLINK_HOME`, `ACTION_JAR_PATH`, and `JAVA_HOME`. +1. **Set Environment Variables**: Modify the `env.sh` script located in the `bin` directory. You can configure variables such as `FLINK_HOME`, `ACTION_JAR_PATH`, and `JAVA_HOME`. 2. **Optional Settings**: If you are not using the CDC (Change Data Capture) function, there is no need to configure `FLINK_HOME` and `ACTION_JAR_PATH`. This setup will prepare your system to properly run the application with the necessary configurations. @@ -85,7 +84,7 @@ To launch the service, follow these steps: ```shell [root@paimon ~]# bin/start.sh ``` -2. **Access the Web Interface**: Open a web browser and enter the URL `http://{ip}:{port}` to navigate to the Paimon web page. +2. **Access the Web Interface**: Open a web browser and enter the URL `http://{ip}:{port}/ui/login` to navigate to the Paimon web page. Ensure you replace `{ip}` and `{port}` with the actual ip address and port number where the service is running.