diff --git a/CHANGELOG.md b/CHANGELOG.md index 5075016..db2ede6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥". ## Latest +- [Bugfix] Fix incorrect notes settings definition - [Improvement] Make it possible to start/stop/reboot a selection of services - [Improvement] Add ``local/k8s reboot`` commands - [Improvement] Add ``-U/--unset`` option to ``config save`` diff --git a/plugins/notes/tutornotes/patches/kustomization-configmapgenerator b/plugins/notes/tutornotes/patches/kustomization-configmapgenerator index 9866900..f8cc39f 100644 --- a/plugins/notes/tutornotes/patches/kustomization-configmapgenerator +++ b/plugins/notes/tutornotes/patches/kustomization-configmapgenerator @@ -1,3 +1,3 @@ - name: notes-settings files: - - plugins/notes/apps/notes/settings/tutor.py \ No newline at end of file + - plugins/notes/apps/settings/tutor.py \ No newline at end of file diff --git a/plugins/notes/tutornotes/patches/local-docker-compose-services b/plugins/notes/tutornotes/patches/local-docker-compose-services index f9ce2e5..1f53743 100644 --- a/plugins/notes/tutornotes/patches/local-docker-compose-services +++ b/plugins/notes/tutornotes/patches/local-docker-compose-services @@ -8,7 +8,7 @@ notes: environment: DJANGO_SETTINGS_MODULE: notesserver.settings.tutor volumes: - - ../apps/notes/settings/tutor.py:/openedx/edx-notes-api/notesserver/settings/tutor.py + - ../plugins/notes/apps/settings/tutor.py:/openedx/edx-notes-api/notesserver/settings/tutor.py - ../../data/notes:/openedx/data restart: unless-stopped {% if ACTIVATE_MYSQL %}depends_on: diff --git a/plugins/notes/tutornotes/templates/notes/hooks/notes/init b/plugins/notes/tutornotes/templates/notes/hooks/notes/init index f0c3d44..6647646 100644 --- a/plugins/notes/tutornotes/templates/notes/hooks/notes/init +++ b/plugins/notes/tutornotes/templates/notes/hooks/notes/init @@ -1 +1 @@ -./manage.py migrate +./manage.py migrate --settings=notesserver.settings.tutor