6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-12-12 14:17:46 +00:00

Fix incorrect notes settings definition

This commit is contained in:
Régis Behmo 2019-07-09 12:21:22 +08:00
parent b75d92f88a
commit 53294ffc37
4 changed files with 4 additions and 3 deletions

View File

@ -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``

View File

@ -1,3 +1,3 @@
- name: notes-settings
files:
- plugins/notes/apps/notes/settings/tutor.py
- plugins/notes/apps/settings/tutor.py

View File

@ -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:

View File

@ -1 +1 @@
./manage.py migrate
./manage.py migrate --settings=notesserver.settings.tutor