Skip to content

Commit b0ac614

Browse files
committed
Documentation
1 parent 8b02e3e commit b0ac614

File tree

1 file changed

+25
-6
lines changed

1 file changed

+25
-6
lines changed

README.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,31 @@ to start it and open a browser at http://localhost:9090.
108108

109109
halOP is also available as a feature pack that can be provisioned with [Galleon](https://github.com/wildfly/galleon).
110110

111-
1. Build the feature pack with `mvn install -P prod,op,feature-pack`
112-
2. Provision a WildFly server with `galleon.sh provision op/feature-pack/target/provision.xml --dir=$TMPDIR/wildfly --stability-level=experimental` (the provided `provision.xml` file is just an example that contains a default configuration plus the halOP feature pack)
113-
3. `cd $TMPDIR/wildfly`
114-
4. Add a WildFly admin user with `bin/add-user.sh -u admin -p admin --silent`
115-
5. Start the server with `bin/standalone.sh --stability=experimental`
116-
6. Open http://localhost:9990/halop in your browser
111+
1. Build the feature pack with
112+
113+
```shell
114+
mvn install -P prod,op,feature-pack
115+
```
116+
117+
2. Provision a WildFly server. You can use the provided [
118+
`provision.xml`](https://github.com/hal/foundation/blob/main/op/feature-pack/provision.xml) as an example. It provisions a
119+
default standalone server plus the halOP feature pack.
120+
121+
```shell
122+
galleon.sh provision op/feature-pack/target/provision.xml \
123+
--dir=$TMPDIR/wildfly
124+
--stability-level=experimental
125+
```
126+
127+
3. Prepare and start the server
128+
129+
```shell
130+
cd $TMPDIR/wildfly
131+
bin/add-user.sh -u admin -p admin --silent
132+
bin/standalone.sh --stability=experimental
133+
```
134+
135+
4. Open http://localhost:9990/halop
117136

118137
# halOS (HAL on OpenShift)
119138

0 commit comments

Comments
 (0)