Guest User

Untitled

a guest
May 15th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. #!/bin/bash
  2. set -a
  3. source application.env
  4. set +a
  5.  
  6. export JAVA_OPTS="-Xms512m -Xmx2048m -Dhttp.port=9001"
  7.  
  8. build/stage/wherehows-backend/bin/playBinary
  9.  
  10. cd WhereHows/wherehows-backend
  11. ./runBackend
  12.  
  13. ./runBackend: line 8: build/stage/wherehows-backend/bin/playBinary: No such file or directory
  14.  
  15. # Directory containing kerberos config files
  16. WHZ_KRB5_DIR="/dir/to/krb5conf"
  17.  
  18. # Secret Key
  19. WHZ_SECRET="change_me"
  20.  
  21. # Database Connection
  22. WHZ_DB_DRIVER="com.mysql.jdbc.Driver"
  23. WHZ_DB_USERNAME="wherehows"
  24. WHZ_DB_PASSWORD="wherehows"
  25. # Fully qualified jdbc url
  26. WHZ_DB_URL="jdbc:mysql://localhost/wherehows"
  27.  
  28. #mysql setup
  29. WHZ_DB_DSCLASSNAME="com.mysql.jdbc.jdbc2.optional.MysqlDataSource"
  30. WHZ_DB_DIALECT="org.hibernate.dialect.MySQLInnoDBDialect"
  31.  
  32. # Directory containing ETL job files
  33. WHZ_ETL_JOBS_DIR="/var/tmp/jobs"
  34.  
  35. # Temp directory for ETL job
  36. WHZ_ETL_TEMP_DIR="/var/tmp/wherehows"
  37.  
  38. cd wherehows-frontend
  39. ../gradlew runPlayBinary
Add Comment
Please, Sign In to add comment