config.inc.sample 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. /**
  3. * Copyright 2021, 2026 5 Mode
  4. *
  5. * This file is part of SqueePF.
  6. *
  7. * SqueePF is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * SqueePF is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with SqueePF. If not, see <https://www.gnu.org/licenses/>.
  19. *
  20. * config.inc
  21. *
  22. * Configuration settings.
  23. *
  24. * @author Daniele Bonini <my25mb@has.im>
  25. * @copyrights (c) 2016, 2026 5 Mode
  26. */
  27. define('DEBUG', true);
  28. define('APP_NAME', "SqueePF");
  29. define('APP_HOST', "squeepf.5mode-foss.eu");
  30. define('APP_PATH', "/pathto/SqueePF");
  31. define('APP_PRIVATE_PATH', "/pathto/SqueePF/Private");
  32. define('APP_PUBLIC_PATH', "/pathto/SqueePF/Public");
  33. define('APP_SECRETS_FOLDER',"scr");
  34. define('APP_ROUTES_PATH', "/pathto/SqueePF/Private/routes");
  35. define('APP_ERROR_PATH', "/pathto/SqueePF/Private/error");
  36. define('APP_LICENSE', <<<LICENSETEXT
  37. Copyright 2021, 2024 5 Mode
  38. This file is part of SqueePF.
  39. SqueePF is free software: you can redistribute it and/or modify
  40. it under the terms of the GNU General Public License as published by
  41. the Free Software Foundation, either version 3 of the License, or
  42. (at your option) any later version.
  43. SqueePF is distributed in the hope that it will be useful,
  44. but WITHOUT ANY WARRANTY; without even the implied warranty of
  45. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  46. GNU General Public License for more details.
  47. You should have received a copy of the GNU General Public License
  48. along with SqueePF. If not, see <https://www.gnu.org/licenses/>.
  49. LICENSETEXT
  50. );
  51. $CONFIG = [
  52. 'DEBUG' => true,
  53. 'APP' => [
  54. 'NAME' => "SqueePF",
  55. 'HOST' => "squeepf.5mode-foss.eu",
  56. 'PATH' => "/pathto/SqueePF/Public",
  57. 'PRIVATE_PATH' => "/pathto/SqueePF/Private",
  58. 'PUBLIC_PATH' => "/pathto/SqueePF/Public",
  59. 'SECRETS_FOLDER' => "scr",
  60. 'ROUTES_PATH' => "/pathto/SqueePF/Private/routes",
  61. 'ERROR_PATH' => "/pathto/SqueePF/Private/error",
  62. 'LICENSE' => <<<LICENSETEXT
  63. Copyright 2021, 2024 5 Mode
  64. This file is part of SqueePF.
  65. SqueePF is free software: you can redistribute it and/or modify
  66. it under the terms of the GNU General Public License as published by
  67. the Free Software Foundation, either version 3 of the License, or
  68. (at your option) any later version.
  69. SqueePF is distributed in the hope that it will be useful,
  70. but WITHOUT ANY WARRANTY; without even the implied warranty of
  71. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  72. GNU General Public License for more details.
  73. You should have received a copy of the GNU General Public License
  74. along with SqueePF. If not, see <https://www.gnu.org/licenses/>.
  75. LICENSETEXT
  76. ]
  77. ];