Advertisement
Guest User

Untitled

a guest
Feb 14th, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.session.SessionAutoConfiguration
  2.  
  3. spring.profiles.active=test
  4.  
  5.  
  6. spring.thymeleaf.cache=false
  7.  
  8. spring.data.mongodb.database=pos_test
  9. spring.data.mongodb.port=27017
  10. spring.data.mongodb.repositories.enabled=true
  11. spring.data.mongodb.uri=mongodb://localhost/pos_test
  12.  
  13. auth.datasource.driverClassName=com.mysql.jdbc.Driver
  14. auth.datasource.url=jdbc:mysql://localhost:3306/auth_db
  15. auth.datasource.username=root
  16. auth.datasource.password=
  17.  
  18. spring.datasource.driverClassName=com.mysql.jdbc.Driver
  19. spring.datasource.url=jdbc:mysql://localhost:3306/inv_test
  20. spring.datasource.username=root
  21. spring.datasource.password=
  22.  
  23. spring.jpa.hibernate.ddl-auto=update
  24. spring.jpa.hibernate.naming-strategy=org.hibernate.cfg.ImprovedNamingStrategy
  25. spring.jpa.database=mysql
  26. spring.jpa.show-sql=true
  27.  
  28. safesat.credential.endpointURL=http://localhost:8085
  29. #safesat.credential.endpointURL=http://172.16.0.41:8085
  30. safesat.credential.clientId=safesat-admin
  31. safesat.credential.secret=safesatsecret
  32. safesat.credential.sslpublickey=/Users/michael/Projects/Company/safesat-authentication-server/safesat-authentication-web/src/main/resources/certificate/safesat-public.der
  33.  
  34. safesat-ssl.port=9443
  35. safesat-ssl.redirectPort=8080
  36. safesat-ssl.keyStore=/Users/michael/Projects/Company/safesat-authentication-server/safesat-authentication-web/src/main/resources/certificate/safesat.jks
  37. safesat-ssl.keyStorePassword=_s4f3s4T!
  38. safesat-ssl.keyPassword=_s4f3s4T!
  39. safesat-ssl.alias=safesat-alias
  40.  
  41. spring.redis.port=6379
  42. spring.redis.host=localhost
  43.  
  44. server.port=8090
  45. auth.datasource.testOnBorrow=true
  46. auth.datasource.validationQuery=SELECT 1
  47. auth.datasource.testWhileIdle=true
  48.  
  49. spring.mail.host=smtp.gmail.com
  50. spring.mail.port=587
  51. spring.mail.username=developer.safesat@gmail.com
  52. spring.mail.password=ihodeputaAND1/4
  53.  
  54. report.invoice.receipt=/Users/michael/Projects/Company/safesat-pos/safesat-pos-resource/src/main/resources/reports/receipt.jasper
  55.  
  56.  
  57. # Auththencation URI
  58. authentication.baseurl=http://localhost:8085
  59. authentication.user.findAllByAccountId=${authentication.baseurl}/api/user/findAllByAccountId
  60.  
  61. safesatmonitoring.webservice.url=http://172.16.0.133:8083
  62. safesatmonitoring.webservice.currentlocation=/Satellite-Web-Service/service/logs/filter
  63. safesatmonitoring.webservice.allvehicle=/Satellite-Web-Service/service/vehicle/findAllActivebySsoAccountid
  64.  
  65. # POS Login page
  66. pos.loginPage=http://localhost:8090/login
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement