mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
84 lines
2.9 KiB
Diff
84 lines
2.9 KiB
Diff
From 231ee836e357b83cc2fc0a3a977f74839308ec68 Mon Sep 17 00:00:00 2001
|
|
From: Ember Keske <git@n0emis.eu>
|
|
Date: Wed, 2 Aug 2023 06:36:02 +0200
|
|
Subject: [PATCH 1/2] Define configs with env vars
|
|
|
|
---
|
|
app.php | 6 +++---
|
|
services/DatabaseService.php | 2 +-
|
|
services/FilesService.php | 2 +-
|
|
services/StockService.php | 2 +-
|
|
4 files changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/app.php b/app.php
|
|
index bc5b1b39..26f7687e 100644
|
|
--- a/app.php
|
|
+++ b/app.php
|
|
@@ -12,7 +12,7 @@ use Slim\Views\Blade;
|
|
require_once __DIR__ . '/packages/autoload.php';
|
|
|
|
// Load config files
|
|
-require_once GROCY_DATAPATH . '/config.php';
|
|
+require_once getenv('GROCY_CONFIG_FILE');
|
|
require_once __DIR__ . '/config-dist.php'; // For not in own config defined values we use the default ones
|
|
require_once __DIR__ . '/helpers/ConfigurationValidator.php';
|
|
|
|
@@ -64,7 +64,7 @@ $app = AppFactory::create();
|
|
$container = $app->getContainer();
|
|
$container->set('view', function (Container $container)
|
|
{
|
|
- return new Blade(__DIR__ . '/views', GROCY_DATAPATH . '/viewcache');
|
|
+ return new Blade(__DIR__ . '/views', getenv('GROCY_CACHE_DIR'));
|
|
});
|
|
|
|
$container->set('UrlManager', function (Container $container)
|
|
@@ -106,7 +106,7 @@ $errorMiddleware->setDefaultErrorHandler(
|
|
|
|
$app->add(new CorsMiddleware($app->getResponseFactory()));
|
|
|
|
-$app->getRouteCollector()->setCacheFile(GROCY_DATAPATH . '/viewcache/route_cache.php');
|
|
+$app->getRouteCollector()->setCacheFile(getenv('GROCY_CACHE_DIR') . '/route_cache.php');
|
|
|
|
ob_clean(); // No response output before here
|
|
$app->run();
|
|
diff --git a/services/DatabaseService.php b/services/DatabaseService.php
|
|
index 4a05bda1..ce41ed17 100644
|
|
--- a/services/DatabaseService.php
|
|
+++ b/services/DatabaseService.php
|
|
@@ -125,6 +125,6 @@ class DatabaseService
|
|
return GROCY_DATAPATH . '/grocy_' . $dbSuffix . '.db';
|
|
}
|
|
|
|
- return GROCY_DATAPATH . '/grocy.db';
|
|
+ return getenv('GROCY_DB_FILE');
|
|
}
|
|
}
|
|
diff --git a/services/FilesService.php b/services/FilesService.php
|
|
index 7d070350..a6dd4b08 100644
|
|
--- a/services/FilesService.php
|
|
+++ b/services/FilesService.php
|
|
@@ -10,7 +10,7 @@ class FilesService extends BaseService
|
|
|
|
public function __construct()
|
|
{
|
|
- $this->StoragePath = GROCY_DATAPATH . '/storage';
|
|
+ $this->StoragePath = getenv('GROCY_STORAGE_DIR');
|
|
if (!file_exists($this->StoragePath))
|
|
{
|
|
mkdir($this->StoragePath);
|
|
diff --git a/services/StockService.php b/services/StockService.php
|
|
index 7265e82b..13af591a 100644
|
|
--- a/services/StockService.php
|
|
+++ b/services/StockService.php
|
|
@@ -1761,7 +1761,7 @@ class StockService extends BaseService
|
|
throw new \Exception('No barcode lookup plugin defined');
|
|
}
|
|
|
|
- $path = GROCY_DATAPATH . "/plugins/$pluginName.php";
|
|
+ $path = getenv('GROCY_PLUGIN_DIR') . "/$pluginName.php";
|
|
|
|
if (file_exists($path))
|
|
{
|
|
--
|
|
2.41.0
|
|
|