You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2019/11/19 02:21:10 UTC

[pulsar-manager] branch master updated: Remove streamnative from the project (#213)

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

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-manager.git


The following commit(s) were added to refs/heads/master by this push:
     new 30db686  Remove streamnative from the project (#213)
30db686 is described below

commit 30db68604ea6e1d86fbc1f1b43b7cff0db02c254
Author: tuteng <gu...@apache.org>
AuthorDate: Tue Nov 19 10:21:00 2019 +0800

    Remove streamnative from the project (#213)
---
 CONTRIBUTING.md         |  6 +++---
 README.md               | 18 ++++++------------
 docker/Dockerfile       |  6 +++---
 docs/developer-guide.md | 10 +++++-----
 front-end/README.md     |  4 ++--
 front-end/package.json  |  4 ++--
 src/README.md           |  4 ++--
 7 files changed, 23 insertions(+), 29 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index eb1e4ff..0d70bb3 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -17,7 +17,7 @@ Node 10.15 | https://nodejs.org/en/
 
 ### Fork pulsar-manager repository
 
-Fork the [pulsar-manager](https://github.com/streamnative/pulsar-manager) repository to your GitHub repository.
+Fork the [pulsar-manager](https://github.com/apache/pulsar-manager) repository to your GitHub repository.
 
 ### Install pulsar-manager dependency 
 
@@ -62,14 +62,14 @@ Follow the instructions [here](https://howtodoinjava.com/automation/lombok-eclip
 1. Add a remote repository.
    
     ```bash
-    $ git remote add streamnative git@github.com:streamnative/pulsar-manager.git
+    $ git remote add apache git@github.com:apache/pulsar-manager.git
     ```
 
 2. Sync you local repository with the remote repository.
 
     ```bash
     $ git checkout master
-    $ git pull streamnative master
+    $ git pull apache master
     ```
 
 3. Create your PR and commit code changes.
diff --git a/README.md b/README.md
index 019f28d..c028a65 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,5 @@
 # Apache Pulsar manager
 
-[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fstreamnative%2Fpulsar-manager.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fstreamnative%2Fpulsar-manager?ref=badge_shield)
-
 Apache Pulsar manager is a web-based GUI management tool for managing and monitoring Pulsar.
 
 ## Feature
@@ -67,7 +65,7 @@ The pulsar-manager can monitor topics and subscriptions.
 
 
 ## Prerequisites
-* Java 8 or later
+* Java JDK 1.8
 * Node 10.15.3 or later
 * Npm 6.4.1 or later
 * Pulsar 2.4.0 or later
@@ -101,7 +99,7 @@ The pulsar-manager can monitor topics and subscriptions.
         * `PASSWORD`: the password of MySQL
 
         ```
-        docker pull streamnative/pulsar-manager
+        docker pull apache/pulsar-manager
         docker run -it -p 9527:9527 -e REDIRECT_HOST=front-end-ip -e REDIRECT_PORT=front-end-port -e DRIVER_CLASS_NAME=com.mysql.jdbc.Driver -e URL='jdbc-url' -e USERNAME=root -e PASSWORD=pulsar pulsar-manager /bin/sh
         ```
 
@@ -116,7 +114,7 @@ The pulsar-manager can monitor topics and subscriptions.
         (1) Download the source code.
 
         ```
-        git clone https://github.com/streamnative/pulsar-manager
+        git clone https://github.com/apache/pulsar-manager
         ```
 
         (2) Build and start the backend.
@@ -150,7 +148,7 @@ Pulsar Manager bundles JDBC Drivers for [HerdDB](https://github.com/diennea/herd
 The default confguration starts and embedded in-memory only HerdDB database.
 
 HerdDB can be used in production, you just have to use the  correct JDBC URL.
-Follow the instructions in [application.properties](https://github.com/streamnative/pulsar-manager/blob/master/src/main/resources/application.properties) to switch the connection to a standalone HerdDB service or cluster.
+Follow the instructions in [application.properties](https://github.com/apache/pulsar-manager/blob/master/src/main/resources/application.properties) to switch the connection to a standalone HerdDB service or cluster.
 
 The JDBC URL will look like this:
 jdbc:herddb:server:localhost:7000
@@ -164,14 +162,10 @@ In order to start and setup an HerdDB database follow the instructions on the [H
 
 ## Back end
 
-For more information about the back end, see [pulsar-manager-backend](https://github.com/streamnative/pulsar-manager/blob/master/src/README.md).
+For more information about the back end, see [pulsar-manager-backend](https://github.com/apache/pulsar-manager/blob/master/src/README.md).
 
 
 ## Front end
 
-For more information about the front end, see [pulsar-manager-frontend](https://github.com/streamnative/pulsar-manager/blob/master/front-end/README.md).
-
-
+For more information about the front end, see [pulsar-manager-frontend](https://github.com/apache/pulsar-manager/blob/master/front-end/README.md).
 
-## License
-[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fstreamnative%2Fpulsar-manager.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fstreamnative%2Fpulsar-manager?ref=badge_large)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index f35604a..223dd62 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -24,10 +24,10 @@ ARG VERSION
 LABEL org.label-schema.build-date=$BUILD_DATE \
       org.label-schema.name="Apache Pulsar Manager" \
       org.label-schema.description="An Apache Pulsar Manager for management Pulsar clusters" \
-      org.label-schema.url="https://github.com/streamnative/pulsar-manager" \
+      org.label-schema.url="https://github.com/apache/pulsar-manager" \
       org.label-schema.vcs-ref=$VCS_REF \
-      org.label-schema.vcs-url="https://github.com/streamnative/pulsar-manager" \
-      org.label-schema.vendor="StreamNative Limited" \
+      org.label-schema.vcs-url="https://github.com/apache/pulsar-manager" \
+      org.label-schema.vendor="Apache Software Foundation" \
       org.label-schema.version=$VERSION \
       org.label-schema.schema-version="1.0"
 
diff --git a/docs/developer-guide.md b/docs/developer-guide.md
index cc32c06..b6247f3 100644
--- a/docs/developer-guide.md
+++ b/docs/developer-guide.md
@@ -20,8 +20,8 @@ The code structure of the backend is shown below.
 
 ![backend-code](img/pulsar-manager-backend-code.png)
 
-* The backend configuration file is [here](https://github.com/streamnative/pulsar-manager/blob/master/src/main/resources/application.properties).
-* The database schema is defined [here](https://github.com/streamnative/pulsar-manager/blob/master/src/main/resources/META-INF/sql/mysql-schema.sql)
+* The backend configuration file is [here](https://github.com/apache/pulsar-manager/blob/master/src/main/resources/application.properties).
+* The database schema is defined [here](https://github.com/apache/pulsar-manager/blob/master/src/main/resources/META-INF/sql/mysql-schema.sql)
 
 ### Add new RESTful API
 
@@ -74,7 +74,7 @@ In the following class you can add some description information, error response,
 ## Frontend
 
 The frontend is developed based on [vue-element-admi](https://panjiachen.github.io/vue-element-admin-site/guide/) and [Element](https://element.eleme.cn/#/en-US).
-The development of the frontend is [here](https://github.com/streamnative/pulsar-manager/tree/master/front-end/src/views/management).
+The development of the frontend is [here](https://github.com/apache/pulsar-manager/tree/master/front-end/src/views/management).
 
 ![frontend-code](img/frontend-code.png)
 
@@ -95,8 +95,8 @@ The RESTful interface is defined in the `api` folder.
 
 2. Add a new page.
 
-Add a new page [here](https://github.com/streamnative/pulsar-manager/tree/master/front-end/src/views/management). 
-For example, [this](https://github.com/streamnative/pulsar-manager/blob/master/front-end/src/views/management/tenants/index.vue) is a tenant page. )
+Add a new page [here](https://github.com/apache/pulsar-manager/tree/master/front-end/src/views/management). 
+For example, [this](https://github.com/apache/pulsar-manager/blob/master/front-end/src/views/management/tenants/index.vue) is a tenant page. )
 
 3. Localization
 
diff --git a/front-end/README.md b/front-end/README.md
index 6734b2c..92dd6cb 100644
--- a/front-end/README.md
+++ b/front-end/README.md
@@ -7,7 +7,7 @@
 The pulsar-manager is tested with Chrome browser.
 
 ### Set cross domain
-Add [proxyTable](https://github.com/streamnative/pulsar-manager/blob/master/front-end/config/index.js).
+Add [proxyTable](https://github.com/apache/pulsar-manager/blob/master/front-end/config/index.js).
 For localhost debug
 ```bash
     proxyTable: {
@@ -28,7 +28,7 @@ For localhost debug
 
 ## Deploy production environment
 
-* Add the following parameters to the Nginx server configuration file [prod.env.js](https://github.com/streamnative/pulsar-manager/blob/master/front-end/config/prod.env.js).
+* Add the following parameters to the Nginx server configuration file [prod.env.js](https://github.com/apache/pulsar-manager/blob/master/front-end/config/prod.env.js).
 ```
 module.exports = {
   NODE_ENV: '"production"',
diff --git a/front-end/package.json b/front-end/package.json
index 4df0c4a..c00e732 100644
--- a/front-end/package.json
+++ b/front-end/package.json
@@ -28,10 +28,10 @@
   ],
   "repository": {
     "type": "git",
-    "url": "git+https://github.com/streamnative/pulsar-manager.git"
+    "url": "git+https://github.com/apache/pulsar-manager.git"
   },
   "bugs": {
-    "url": "https://github.com/streamnative/pulsar-manager/issues"
+    "url": "https://github.com/apache/pulsar-manager/issues"
   },
   "dependencies": {
     "axios": "0.18.1",
diff --git a/src/README.md b/src/README.md
index 4700e40..542a62e 100644
--- a/src/README.md
+++ b/src/README.md
@@ -28,9 +28,9 @@ java -jar ./build/libs/pulsar-manager.jar --redirect.host=http://localhost --red
 
 If you have a large amount of data, you can use a custom database. The following is an example of PostgreSQL.   
 
-1. Initialize database and table structures using [file](https://github.com/streamnative/pulsar-manager/tree/master/src/main/resources/META-INF/sql/postgresql-schema.sql).
+1. Initialize database and table structures using [file](https://github.com/apache/pulsar-manager/tree/master/src/main/resources/META-INF/sql/postgresql-schema.sql).
 
-2. Modify the [configuration file](https://github.com/streamnative/pulsar-manager/blob/master/src/main/resources/application.properties) and add PostgreSQL configuration
+2. Modify the [configuration file](https://github.com/apache/pulsar-manager/blob/master/src/main/resources/application.properties) and add PostgreSQL configuration
 
 ```
 spring.datasource.driver-class-name=org.postgresql.Driver