Browse Source

add run.sh and docs

master
Duke Leto 2 years ago
parent
commit
19d5e21148
  1. 6
      README.md
  2. 4
      run.sh

6
README.md

@ -29,7 +29,11 @@ Clone and compile:
If the build was successful, you can execute the binary and start the server:
java -jar build/libs/wormhole-1.0-SNAPSHOT.jar
./run.sh
It will run in the background. You can see the process via:
ps auxw|grep wormhole
Note: The default port of the Wormhole is 7070. This can be changed in source and recompiled if needed.

4
run.sh

@ -0,0 +1,4 @@
#!/bin/bash
echo "Starting wormhole server..."
java -jar build/libs/wormhole-1.0-SNAPSHOT.jar &
Loading…
Cancel
Save