nikolailarsen01

config.php

Jun 28th, 2021
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.84 KB | None | 0 0
  1. <?php
  2.  
  3. // Settings can also be overwritten in two ways
  4. //
  5. // First priority
  6. // A .txt file with the same name as the setting in /data/settingoverrides
  7. // the content of the file is used as the setting value
  8. //
  9. // Second priority
  10. // An environment variable with the same name as the setting and prefix "GROCY_"
  11. // so for example "GROCY_BASE_URL"
  12. //
  13. // Third priority
  14. // The settings defined here below
  15.  
  16. // Either "production", "dev", "demo" or "prerelease"
  17. // When not "production", authentication will be disabled and
  18. // demo data will be populated during database migrations
  19. Setting('MODE', 'production');
  20.  
  21. // Either "en" or "de" or the directory name of
  22. // one of the other available localization folders in the "/localization" directory
  23. Setting('DEFAULT_LOCALE', 'en');
  24.  
  25. // This is used to define the first day of a week for calendar views in the frontend,
  26. // leave empty to use the locale default
  27. // Needs to be a number where Sunday = 0, Monday = 1 and so forth
  28. Setting('CALENDAR_FIRST_DAY_OF_WEEK', '');
  29.  
  30. // If calendars should show week numbers
  31. Setting('CALENDAR_SHOW_WEEK_OF_YEAR', true);
  32.  
  33. // To keep it simple: grocy does not handle any currency conversions,
  34. // this here is used to format all money values,
  35. // so doesn't really matter, but should be the
  36. // ISO 4217 code of the currency ("USD", "EUR", "GBP", etc.)
  37. Setting('CURRENCY', 'DKK');
  38.  
  39. // When running grocy in a subdirectory, this should be set to the relative path, otherwise empty
  40. // It needs to be set to the part (of the URL) after the document root,
  41. // if URL rewriting is disabled, including index.php
  42. // Example with URL Rewriting support:
  43. // Root URL = https://example.com/grocy
  44. // => BASE_PATH = /grocy
  45. // Example without URL Rewriting support:
  46. // Root URL = https://example.com/grocy/public/index.php/
  47. // => BASE_PATH = /grocy/public/index.php
  48. Setting('BASE_PATH', '/');
  49.  
  50. // The base URL of your installation,
  51. // should be just "/" when running directly under the root of a (sub)domain
  52. // or for example "https://example.com/grocy" when using a subdirectory
  53. Setting('BASE_URL', '/');
  54.  
  55. // The plugin to use for external barcode lookups,
  56. // must be the filename without .php extension and must be located in /data/plugins,
  57. // see /data/plugins/DemoBarcodeLookupPlugin.php for an example implementation
  58. Setting('STOCK_BARCODE_LOOKUP_PLUGIN', 'DemoBarcodeLookupPlugin');
  59.  
  60. // If, however, your webserver does not support URL rewriting, set this to true
  61. Setting('DISABLE_URL_REWRITING', false);
  62.  
  63. // Specify an custom homepage if desired - by default the homepage will be set to the stock overview page,
  64. // this needs to be one of the following values:
  65. // stock, shoppinglist, recipes, chores, tasks, batteries, equipment, calendar, mealplan
  66. Setting('ENTRY_PAGE', 'stock');
  67.  
  68. // Set this to true if you want to disable authentication / the login screen,
  69. // places where user context is needed will then use the default (first existing) user
  70. Setting('DISABLE_AUTH', false);
  71.  
  72. // Either "Grocy\Middleware\DefaultAuthMiddleware", "Grocy\Middleware\ReverseProxyAuthMiddleware"
  73. // or any class that implements Grocy\Middleware\AuthMiddleware
  74. Setting('AUTH_CLASS', 'Grocy\Middleware\DefaultAuthMiddleware');
  75.  
  76. // When using ReverseProxyAuthMiddleware,
  77. // the name of the HTTP header which your reverse proxy uses to pass the username (on successful authentication)
  78. Setting('REVERSE_PROXY_AUTH_HEADER', 'REMOTE_USER');
  79.  
  80. // When using LdapAuthMiddleware
  81. Setting('LDAP_DOMAIN', ''); // Example value "local"
  82. Setting('LDAP_ADDRESS', ''); // Example value "ldap://vm-dc2019.local.berrnd.net"
  83. Setting('LDAP_BASE_DN', ''); // Example value "OU=OU_Users,DC=local,DC=berrnd,DC=net"
  84.  
  85. // Set this to true if you want to disable the ability to scan a barcode via the device camera (Browser API)
  86. Setting('DISABLE_BROWSER_BARCODE_CAMERA_SCANNING', false);
  87.  
  88. // Set this if you want to have a different start day for the weekly meal plan view,
  89. // leave empty to use CALENDAR_FIRST_DAY_OF_WEEK (see above)
  90. // Needs to be a number where Sunday = 0, Monday = 1 and so forth
  91. Setting('MEAL_PLAN_FIRST_DAY_OF_WEEK', '');
  92.  
  93. // Default permissions for new users
  94. // the array needs to contain the technical/constant names
  95. // see the file controllers/Users/User.php for possible values
  96. Setting('DEFAULT_PERMISSIONS', ['ADMIN']);
  97.  
  98. // Default user settings
  99. // These settings can be changed per user, here the defaults
  100. // are defined which are used when the user has not changed the setting so far
  101.  
  102. // Night mode related
  103. DefaultUserSetting('night_mode_enabled', false); // If night mode is enabled always
  104. DefaultUserSetting('auto_night_mode_enabled', false); // If night mode is enabled automatically when inside a given time range (see the two settings below)
  105. DefaultUserSetting('auto_night_mode_time_range_from', '20:00'); // Format HH:mm
  106. DefaultUserSetting('auto_night_mode_time_range_to', '07:00'); // Format HH:mm
  107. DefaultUserSetting('auto_night_mode_time_range_goes_over_midnight', true); // If the time range above goes over midnight
  108. DefaultUserSetting('currently_inside_night_mode_range', false); // If we're currently inside of night mode time range (this is not user configurable, but stored as a user setting because it's evaluated client side to be able to use the client time instead of the maybe different server time)
  109.  
  110. // Keep screen on settings
  111. DefaultUserSetting('keep_screen_on', false); // Keep the screen always on
  112. DefaultUserSetting('keep_screen_on_when_fullscreen_card', false); // Keep the screen on when a "fullscreen-card" is displayed
  113.  
  114. // Stock settings
  115. DefaultUserSetting('product_presets_location_id', -1); // Default location id for new products (-1 means no location is preset)
  116. DefaultUserSetting('product_presets_product_group_id', -1); // Default product group id for new products (-1 means no product group is preset)
  117. DefaultUserSetting('product_presets_qu_id', -1); // Default quantity unit id for new products (-1 means no quantity unit is preset)
  118. DefaultUserSetting('stock_decimal_places_amounts', 4); // Default decimal places allowed for amounts
  119. DefaultUserSetting('stock_decimal_places_prices', 2); // Default decimal places allowed for prices
  120. DefaultUserSetting('stock_due_soon_days', 5);
  121. DefaultUserSetting('stock_default_purchase_amount', 0);
  122. DefaultUserSetting('stock_default_consume_amount', 1);
  123. DefaultUserSetting('stock_default_consume_amount_use_quick_consume_amount', false);
  124. DefaultUserSetting('scan_mode_consume_enabled', false);
  125. DefaultUserSetting('scan_mode_purchase_enabled', false);
  126. DefaultUserSetting('show_icon_on_stock_overview_page_when_product_is_on_shopping_list', true);
  127. DefaultUserSetting('show_purchased_date_on_purchase', false); // Wheter the purchased date should be editable on purchase (defaults to today otherwise)
  128. DefaultUserSetting('show_warning_on_purchase_when_due_date_is_earlier_than_next', true); // Show a warning on purchase when the due date of the purchased product is earlier than the next due date in stock
  129.  
  130. // Shopping list settings
  131. DefaultUserSetting('shopping_list_to_stock_workflow_auto_submit_when_prefilled', false); // Automatically do the booking using the last price and the amount of the shopping list item, if the product has "Default due days" set
  132. DefaultUserSetting('shopping_list_show_calendar', false);
  133.  
  134. // Recipe settings
  135. DefaultUserSetting('recipe_ingredients_group_by_product_group', false); // Group recipe ingredients by their product group
  136.  
  137. // Chores settings
  138. DefaultUserSetting('chores_due_soon_days', 5);
  139.  
  140. // Batteries settings
  141. DefaultUserSetting('batteries_due_soon_days', 5);
  142.  
  143. // Tasks settings
  144. DefaultUserSetting('tasks_due_soon_days', 5);
  145.  
  146. // If the page should be automatically reloaded when there was
  147. // an external change
  148. DefaultUserSetting('auto_reload_on_db_change', true);
  149.  
  150. // Show a clock in the header next to the logo or not
  151. DefaultUserSetting('show_clock_in_header', false);
  152.  
  153. // Component configuration for Quagga2 - read https://github.com/ericblade/quagga2#configobject for details
  154. // Below is a generic good configuration,
  155. // for an iPhone 7 Plus, halfsample = true, patchsize = small, frequency = 5 yields very good results
  156. DefaultUserSetting('quagga2_numofworkers', 4);
  157. DefaultUserSetting('quagga2_halfsample', false);
  158. DefaultUserSetting('quagga2_patchsize', 'medium');
  159. DefaultUserSetting('quagga2_frequency', 10);
  160. DefaultUserSetting('quagga2_debug', true);
  161.  
  162. // Feature flags
  163. // grocy was initially about "stock management for your household", many other things
  164. // came and still come by, because they are useful - here you can disable the parts
  165. // which you don't need to have a less cluttered UI
  166. // (set the setting to "false" to disable the corresponding part, which should be self explanatory)
  167. Setting('FEATURE_FLAG_STOCK', true);
  168. Setting('FEATURE_FLAG_SHOPPINGLIST', true);
  169. Setting('FEATURE_FLAG_RECIPES', true);
  170. Setting('FEATURE_FLAG_CHORES', true);
  171. Setting('FEATURE_FLAG_TASKS', true);
  172. Setting('FEATURE_FLAG_BATTERIES', true);
  173. Setting('FEATURE_FLAG_EQUIPMENT', true);
  174. Setting('FEATURE_FLAG_CALENDAR', true);
  175.  
  176. // Sub feature flags
  177. Setting('FEATURE_FLAG_STOCK_PRICE_TRACKING', true);
  178. Setting('FEATURE_FLAG_STOCK_LOCATION_TRACKING', true);
  179. Setting('FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_TRACKING', true);
  180. Setting('FEATURE_FLAG_STOCK_PRODUCT_OPENED_TRACKING', true);
  181. Setting('FEATURE_FLAG_STOCK_PRODUCT_FREEZING', true);
  182. Setting('FEATURE_FLAG_STOCK_BEST_BEFORE_DATE_FIELD_NUMBER_PAD', true); // Activate the number pad in due date fields on (supported) mobile browsers
  183. Setting('FEATURE_FLAG_SHOPPINGLIST_MULTIPLE_LISTS', true);
  184. Setting('FEATURE_FLAG_CHORES_ASSIGNMENTS', true);
  185.  
  186. // Feature settings
  187. Setting('FEATURE_SETTING_STOCK_COUNT_OPENED_PRODUCTS_AGAINST_MINIMUM_STOCK_AMOUNT', true); // When set to true, opened items will be counted as missing for calculating if a product is below its minimum stock amount
  188. Setting('FEATURE_FLAG_AUTO_TORCH_ON_WITH_CAMERA', true); // Enables the torch automaticaly (if the device has one)
Advertisement
Add Comment
Please, Sign In to add comment