fix: internal api port number (#20)

This commit is contained in:
Navin Karkera 2023-02-24 19:36:49 +05:30 committed by GitHub
parent 2a9078b592
commit 9b8f299956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -1,3 +1,2 @@
# Student notes # Student notes
EDXNOTES_CLIENT_NAME = "notes" EDXNOTES_CLIENT_NAME = "notes"
EDXNOTES_INTERNAL_API = "http://notes:8000/api/v1"

View File

@ -1 +1,2 @@
EDXNOTES_PUBLIC_API = "http://{{ NOTES_HOST }}:8120/api/v1" EDXNOTES_PUBLIC_API = "http://{{ NOTES_HOST }}:8120/api/v1"
EDXNOTES_INTERNAL_API = "http://notes:8120/api/v1"

View File

@ -1 +1,2 @@
EDXNOTES_PUBLIC_API = "{{ "https" if ENABLE_HTTPS else "http" }}://{{ NOTES_HOST }}/api/v1" EDXNOTES_PUBLIC_API = "{{ "https" if ENABLE_HTTPS else "http" }}://{{ NOTES_HOST }}/api/v1"
EDXNOTES_INTERNAL_API = "http://notes:8000/api/v1"