setup_mysql.sh 261 B

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