setup.sh 216 B

1234567
  1. #!/bin/bash
  2. sed -i 's|url: jdbc:mysql://.*/hello_world|url: jdbc:mysql://'"${DBHOST}"':3306/hello_world|g' hello-world.yml
  3. mvn clean package
  4. java -jar target/hello-world-0.0.1-SNAPSHOT.jar server hello-world.yml &