From 7c08b71471a4ff20e9e0ef8cac61df833b3f45a0 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Wed, 18 Nov 2020 10:15:14 +0100 Subject: [PATCH] default etl configuration added --- debian-files/smasch.py | 1 + local_settings_ci.py | 1 + local_settings_ci_sqlite.py | 1 + smash/smash/local_settings.py.template | 3 +++ 4 files changed, 6 insertions(+) diff --git a/debian-files/smasch.py b/debian-files/smasch.py index 145ee8a0..f3280119 100644 --- a/debian-files/smasch.py +++ b/debian-files/smasch.py @@ -17,6 +17,7 @@ DATABASES = { STATIC_ROOT = '/usr/lib/smasch/data/static' MEDIA_ROOT = '/usr/lib/smasch/data/media' UPLOAD_ROOT = '/usr/lib/smasch/data/upload' +ETL_ROOT = '/usr/lib/smasch/data/etl' ALLOWED_HOSTS = ["127.0.0.1", "localhost"] diff --git a/local_settings_ci.py b/local_settings_ci.py index 0d3635ec..7838de32 100644 --- a/local_settings_ci.py +++ b/local_settings_ci.py @@ -28,6 +28,7 @@ DATABASES = { STATIC_ROOT = '/tmp/static' # Warning! `/tmp` directory can be flushed in any moment; use a persistent one; e.g. ~/tmp/static MEDIA_ROOT = '/tmp/media' # Warning! `/tmp` directory can be flushed in any moment; use a persistent one, e.g. ~/tmp/media UPLOAD_ROOT = '/tmp/upload' +ETL_ROOT = '/tmp/etl' STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage' diff --git a/local_settings_ci_sqlite.py b/local_settings_ci_sqlite.py index b56d1640..2a069768 100644 --- a/local_settings_ci_sqlite.py +++ b/local_settings_ci_sqlite.py @@ -17,6 +17,7 @@ DATABASES = { STATIC_ROOT = '/tmp/static' # Warning! `/tmp` directory can be flushed in any moment; use a persistent one; e.g. ~/tmp/static MEDIA_ROOT = '/tmp/media' # Warning! `/tmp` directory can be flushed in any moment; use a persistent one, e.g. ~/tmp/media UPLOAD_ROOT = '/tmp/upload' +ETL_ROOT = '/tmp/etl' STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage' diff --git a/smash/smash/local_settings.py.template b/smash/smash/local_settings.py.template index 79c90e52..7b32d338 100644 --- a/smash/smash/local_settings.py.template +++ b/smash/smash/local_settings.py.template @@ -38,6 +38,9 @@ MEDIA_ROOT = '~/tmp/media' # Warning! `/tmp` directory can be flushed in any moment; # use a persistent one, e.g. ~/tmp/upload UPLOAD_ROOT = '~/tmp/upload' +# Warning! `/tmp` directory can be flushed in any moment; +# use a persistent one, e.g. ~/tmp/upload +ETL_ROOT = '~/tmp/etl' LOGGING = { 'version': 1, -- GitLab