Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clarification of jar file name and minor edits #6851

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions waltz-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ back to `<home>/.waltz/waltz.properties` for options, should look something like

# Running

## Without container (using uber jar)
## Without container (using uber jar / jar with dependencies)

Launch the server with

$> cd waltz-web/target
$> java -cp uber-waltz-web-1.0-SNAPSHOT.jar Main
$> java -cp waltz-web-jar-with-dependencies.jar Main


## With container (i.e. Tomcat)
Expand All @@ -36,7 +36,7 @@ Deploy the war file in:

waltz-web/target/waltz-web.war

Ensure `waltz.properties` and and overridden `logback.xml` file
Ensure `waltz.properties` and overridden `logback.xml` file
are available (typically on the classpath).

## Both
Expand Down