Skip to content

Instantly share code, notes, and snippets.

@orrsella
Last active August 2, 2020 05:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save orrsella/e6b74108270fe6015aac to your computer and use it in GitHub Desktop.
Save orrsella/e6b74108270fe6015aac to your computer and use it in GitHub Desktop.
Start Script
#!/bin/bash
MAIN_CLASS={{ main_class }}
APP_CONFIG={{ app_config }}
LOG_CONFIG={{ log_config }}
BIN_DIR={{ bin_dir }}
# ***********************************************
# ***********************************************
ARGS="-Dconfig.file=${APP_CONFIG} -Dlogback.configurationFile=${LOG_CONFIG}"
exec java $ARGS -cp "$BIN_DIR/*" $MAIN_CLASS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment