Skip to content

Commit 69d92fa

Browse files
committed
Update README
1 parent 9b9eb36 commit 69d92fa

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
The [Apache ActiveMQ Artemis](https://activemq.apache.org/components/artemis/) Console Plugin is written using [Hawtio v4](https://github.com/hawtio/hawtio).
55
The plugin is written in TypeScript. Since a Hawtio plugin is based on React and [Webpack Module Federation](https://module-federation.github.io/),
6-
this project uses Yarn v3 and [CRACO](https://craco.js.org/) as the build tools.
6+
this project uses Yarn v4 and [Webpack](https://webpack.js.org/) as the build tools.
77

88
The WAR file created by this project is consumed by ActiveMQ Artemis but can be developed and run standalone.
99

@@ -41,12 +41,12 @@ you can enter the Artemis Jolokia endpoint details, for a default Artemis instal
4141
| Key | Value |
4242
|--------|------------------|
4343
| Name | Artemis |
44-
| Schema | HTTP |
44+
| Scheme | HTTP |
4545
| Host | 127.0.0.1 |
4646
| Port | 8161 |
4747
| Path | /console/jolokia |
4848

49-
You can test the connection and then once saved connect to Artemis, This will open a new tab in the browser.
49+
You can test the connection and then once saved connect to Artemis. This will open a new tab in the browser.
5050

5151
Note: If you use localhost for the 'Host' setting and you find the connection doesn't work this could be beacuse localhost
5252
is being translated to your local ipv6 address rather than the ipv4 address. If that occurs use the IP address instead.
@@ -57,21 +57,25 @@ You could run `mvn install` or `mvn jetty:run` every time to incrementally devel
5757
frontend project while checking its behaviour in the browser. But this is not suitable for running the fast development feedback cycle.
5858

5959
As shown below, a faster development cycle can be achieved by directly running the `artemis-console-extension`
60-
frontend project itself in development mode with `yarn start`,
60+
frontend project itself in development mode with `yarn start` or `npm run start`.
6161

6262
### Development
63-
Start the plugin project in development mode:
63+
Start the plugin project in development mode with yarn:
6464

6565
```console
6666
cd artemis-console-extension/artemis-extension
6767
yarn start
6868
```
6969

70-
Now you should be able to preview the plugins under development at <http://localhost:3001/console/>. However, since it still
71-
hasn't been connected to a backend JVM, you can then connect to a running Artemis instance using the connect tab using for
72-
instance http://localhost:8161/console/jolokia.
73-
You can now edit the artemis console web application and see changes loaded live.
74-
70+
or with npm:
7571

72+
```console
73+
cd artemis-console-extension/artemis-extension
74+
npm run start
75+
```
7676

7777

78+
Now you should be able to preview the plugins under development at <http://localhost:8080/console/>. However, since it still
79+
hasn't been connected to a backend JVM, you can then connect to a running Artemis instance using the connect tab using for
80+
instance http://localhost:8161/console/jolokia.
81+
You can now edit the artemis console web application and see changes loaded live.

0 commit comments

Comments
 (0)