diff --git a/lms/Dockerfile b/lms/Dockerfile index b4c0cd6..af5c639 100644 --- a/lms/Dockerfile +++ b/lms/Dockerfile @@ -43,9 +43,9 @@ RUN pip install -r requirements/edx/paver.txt RUN paver install_prereqs # Copy configuration files -COPY ./lms.env.json /openedx/ -COPY ./lms.auth.json /openedx/ -COPY ./production.py /openedx/edx-platform/lms/envs/ +COPY ./config/lms.env.json /openedx/ +COPY ./config/lms.auth.json /openedx/ +COPY ./config/production.py /openedx/edx-platform/lms/envs/ # Configure environment ENV DJANGO_SETTINGS_MODULE lms.envs.production diff --git a/lms/lms.auth.json b/lms/config/lms.auth.json similarity index 100% rename from lms/lms.auth.json rename to lms/config/lms.auth.json diff --git a/lms/lms.env.json b/lms/config/lms.env.json similarity index 100% rename from lms/lms.env.json rename to lms/config/lms.env.json diff --git a/lms/production.py b/lms/config/production.py similarity index 100% rename from lms/production.py rename to lms/config/production.py