-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from eduNEXT/cag/bootstrap-plugin
chore: bootstrap plugin
- Loading branch information
Showing
19 changed files
with
917 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
""" | ||
Open edX Django plugin for Turnitin integrations using Open edX Filters. | ||
""" | ||
|
||
__version__ = "0.1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
""" | ||
Common Django settings for the platform_plugin_turnitin project. | ||
For more information on this file, see | ||
https://docs.djangoproject.com/en/2.22/topics/settings/ | ||
For the full list of settings and their values, see | ||
https://docs.djangoproject.com/en/2.22/ref/settings/ | ||
""" | ||
|
||
# Quick-start development settings - unsuitable for production | ||
# See https://docs.djangoproject.com/en/2.22/howto/deployment/checklist/ | ||
|
||
# SECURITY WARNING: keep the secret key used in production secret! | ||
SECRET_KEY = "secret-key" | ||
|
||
|
||
# Application definition | ||
|
||
INSTALLED_APPS = [ | ||
"platform_plugin_turnitin", | ||
] | ||
|
||
|
||
# Internationalization | ||
# https://docs.djangoproject.com/en/2.22/topics/i18n/ | ||
|
||
LANGUAGE_CODE = "en-us" | ||
|
||
TIME_ZONE = "UTC" | ||
|
||
USE_TZ = True | ||
|
||
|
||
def plugin_settings(settings): # pylint: disable=unused-argument | ||
""" | ||
Set of plugin settings used by the Open Edx platform. | ||
More info: https://github.com/edx/edx-platform/blob/master/openedx/core/djangoapps/plugins/README.rst | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
""" | ||
Production Django settings for platform_plugin_turnitin project. | ||
""" | ||
|
||
|
||
def plugin_settings(settings): # pylint: disable=unused-argument | ||
""" | ||
Set of plugin settings used by the Open Edx platform. | ||
More info: https://github.com/edx/edx-platform/blob/master/openedx/core/djangoapps/plugins/README.rst | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.8 | ||
# by the following command: | ||
# | ||
# make upgrade | ||
# | ||
asgiref==3.7.2 | ||
# via django | ||
django==3.2.22 | ||
# via | ||
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt | ||
# -r requirements/base.in | ||
pytz==2023.3.post1 | ||
# via django | ||
sqlparse==0.4.4 | ||
# via django | ||
typing-extensions==4.8.0 | ||
# via asgiref |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.8 | ||
# by the following command: | ||
# | ||
# make upgrade | ||
# | ||
distlib==0.3.7 | ||
# via virtualenv | ||
filelock==3.12.4 | ||
# via | ||
# tox | ||
# virtualenv | ||
packaging==23.2 | ||
# via tox | ||
platformdirs==3.11.0 | ||
# via virtualenv | ||
pluggy==1.3.0 | ||
# via tox | ||
py==1.11.0 | ||
# via tox | ||
six==1.16.0 | ||
# via tox | ||
tomli==2.0.1 | ||
# via tox | ||
tox==3.28.0 | ||
# via | ||
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt | ||
# -r requirements/ci.in | ||
# tox-battery | ||
tox-battery==0.6.2 | ||
# via -r requirements/ci.in | ||
virtualenv==20.24.5 | ||
# via tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ | |
|
||
diff-cover # Changeset diff test coverage | ||
edx-i18n-tools # For i18n_tool dummy | ||
black |
Oops, something went wrong.