From c6e946af2c38399ba6b8496a3c55e7626d477440 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Fri, 4 Sep 2015 23:55:31 +0300 Subject: [PATCH] the default media path is now /var/lib/motioneye --- .gitignore | 3 --- motioneye/settings.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 005b145..67b52a1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,9 +7,6 @@ *.conf *.json .settings -conf run -media -log dist motioneye.egg-info diff --git a/motioneye/settings.py b/motioneye/settings.py index 1a5fa83..82e059e 100644 --- a/motioneye/settings.py +++ b/motioneye/settings.py @@ -41,7 +41,7 @@ else: LOG_PATH = RUN_PATH # default output path for media files (must be writable by motionEye) -MEDIA_PATH = RUN_PATH +MEDIA_PATH = '/var/lib/motioneye' # path to the motion binary to use (automatically detected by default) MOTION_BINARY = None -- 2.39.5