Advertisement
Guest User

Untitled

a guest
Dec 29th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. # This is the main configuration file for the application.
  2. # ~~~~~
  3.  
  4. include "commons.conf"
  5.  
  6. # Database configuration
  7. # ~~~~~
  8. # You can declare as many datasources as you want.
  9. # By convention, the default datasource is named `default`
  10. #
  11. db.default.driver=org.postgresql.Driver
  12. db.default.url="postgres://baile:2675S88t00643553@dev-sandbox.cf2kn4jlwevq.us-east-1.redshift.amazonaws.com:5439/baile"
  13. db.default.host="dev-sandbox.cf2kn4jlwevq.us-east-1.redshift.amazonaws.com"
  14. db.default.port="5439"
  15. db.default.dbname = "baile"
  16. db.default.username = "baile"
  17. db.default.password = "2675S88t00643553"
  18. db.default.sparkDBUrl="jdbc:postgresql://"${db.default.host}":"${db.default.port}"/"${db.default.dbname}"?user="${db.default.username}"&password="${db.default.password}
  19. db.default.sparkDBUrl2="jdbc:redshift://"${db.default.host}":"${db.default.port}"/"${db.default.dbname}"?user="${db.default.username}"&password="${db.default.password}
  20. #db.default.partitionCount=2
  21. #db.default.maxConnectionsPerPartition=10
  22. #db.default.minConnectionsPerPartition=5
  23. #db.default.connectionTimeout=20 second
  24. #db.default.acquireRetryAttempts=5
  25. #specify a connectionTestQuery. Only do this if upgrading the JDBC-Driver does not help
  26. db.default.hikaricp.connectionTestQuery="SELECT TRUE"
  27.  
  28. samba.urls.location="http://10.10.21.38/api/samba/v0.1"
  29.  
  30.  
  31. mongodb-shared {
  32. host = "10.10.20.128"
  33. port = "27017"
  34. user = "insilico_d"
  35. pass = "w!j1Qb7BekhcTUysLD@F7WRxbJ3u"
  36. }
  37.  
  38. mongodb-mdr {
  39. insilico = ${mongodb-shared}
  40. insilico.database = "insilico-d"
  41. }
  42.  
  43. # AWS S3
  44. aws.access.key="AKIAJQJFNGLR7VKFF3SA"
  45. aws.secret.key="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"
  46. aws.s3.bucket="sentrana-baile"
  47.  
  48. # Application url to send with email
  49. ApplicationUrl="https://insilico-dev.sentrana.com"
  50. ApplicationSignUpBaseUrl="https://insilico-dev.sentrana.com/signup"
  51.  
  52. //TODO before making it into production switch default value to false. Avoid letting all the world discover your API.
  53. swaggerEnabled=true
  54.  
  55. sentrana.um.server.url = "https://um-service-dev.sentrana.com"
  56. sentrana.um.server.client.id = "baile_app_id"
  57. sentrana.um.server.client.secret = "baileDevSecret"
  58. sentrana.um.server.acceptAnyCertificate = true
  59.  
  60. sentrana.um.self.service.org.id = "orgs_self_service"
  61.  
  62. # Spark configuration
  63. # spark.driver.host = "10.46.32.33"
  64. spark.local.ip = "10.10.10.95"
  65. spark.lib.path = "s3n://insilico/dev/jars/"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement