Skip to content

Commit f7f5cfa

Browse files
lilioidRoman Frigg
authored andcommitted
make paths non-absolute to work good with fs
1 parent ca683d8 commit f7f5cfa

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

imagetagger/imagetagger/settings.py.example

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,8 @@ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
7878
TOOLS_ENABLED = True
7979
TOOL_UPLOAD_NOTICE = ''
8080

81-
DATA_PATH = '/app/data'
82-
IMAGE_PATH = DATA_PATH + '/images'
83-
TOOLS_PATH = DATA_PATH + '/tools'
81+
IMAGE_PATH = 'images'
82+
TOOLS_PATH = 'tools'
8483

8584
# Use ldap login
8685
#

0 commit comments

Comments
 (0)