Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 696 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 696 Bytes

Money transfer project: Java

Learn how the pieces of a Temporal application work together. Follow the Run your first app tutorial to learn more about Temporal Workflows.

Note: This project uses Snipsync comment wrappers to automatically keep code snippets up to date within our documentation.

Start a local server

# consider using a tmux session
tmux new -t temporal
temporal server start-dev
# detach: ctrl-b d
# reattach: tmux a -t temporal

Building, cleaning, and other tasks

build:
   ./gradlew build

clean:
   ./gradlew clean

run:
   ./gradlew run