Skip to content
Snippets Groups Projects
Commit 7c08b714 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

default etl configuration added

parent c5992c03
No related branches found
No related tags found
1 merge request!275Resolve "update automatic visit/subject importer"
Pipeline #34420 passed
......@@ -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"]
......
......@@ -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'
......
......@@ -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'
......
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment