Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. [production]
  2. phpSettings.display_startup_errors = 0
  3. phpSettings.display_errors = 0
  4. includePaths.library = APPLICATION_PATH "/../library"
  5. bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
  6. bootstrap.class = "Bootstrap"
  7. appnamespace = "Application"
  8. resources.frontController.params.displayExceptions = 0
  9. resources.frontController.plugins.complementos = "Application_Plugins_Complemento"
  10. resources.frontController.plugins.public = "Application_Plugins_Publico"
  11. resources.frontController.plugins.api = "Application_Plugins_Api"
  12. resources.frontController.plugins.contrato = "Application_Plugins_Contrato"
  13. resources.frontController.plugins.menu = "Application_Plugins_Menu"
  14. resources.frontController.plugins.view = "Application_Plugins_View"
  15. resources.frontController.plugins.client = "Application_Plugins_Client"
  16. resources.layout.layoutPath = LIBRARY_PATH "/Application/Layouts/scripts"
  17. resources.view[] =
  18. autoloaderNamespaces[] = "Superlogica_"
  19.  
  20. ; Rota para acessar página pelo ID
  21. resources.router.routes.listid.route = ":controller/id/:id/*"
  22. resources.router.routes.listid.defaults.controller = "index"
  23.  
  24. cloud.tema.url = "https://superlogica.net/temas/default/"
  25. api.url = "http://localhost:3059/%app_id%/atual"
  26. client.url = "http://localhost:3059/clients/%app_id%"
  27. apioauth.url = "http://api.superlogica.net/v2/%app_id%"
  28.  
  29. push.key = 'df51db5a71a73dfe6537fa353e623c1337ccdac444eef49cf23733b38cbe1e69'
  30. push.secret = '64b70f6ba7b6eae15a5db981fed2370ff99f76aa41456c6a3d46d308681e3b77'
  31. push.appid = '1'
  32.  
  33. app.versaoDb = "1"
  34. app.usarDb = "0"
  35.  
  36. apisudo.username = 'anonymus';
  37. apisudo.password = '1208@82b34i3424';
  38.  
  39. mysql.host = "localhost"
  40. mysql.porta = "3359"
  41. mysql.username = "root"
  42. mysql.password = "root"
  43.  
  44. [staging : production]
  45.  
  46. [testing : production]
  47.  
  48.  
  49. [development : production]
  50. api.url = "http://localhost:3059/%app_id%/atual"
  51. client.url = "http://localhost:3059/clients/%app_id%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement