-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/npm_and_yarn/frontend/emotion/sty…
…led-11.13.0
- Loading branch information
Showing
9 changed files
with
71 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
{ | ||
"name": "IPT Django", | ||
"type": "debugpy", | ||
"request": "attach", | ||
"pathMappings": [ | ||
{ | ||
"localRoot": "${workspaceFolder}", | ||
"remoteRoot": "/code" | ||
} | ||
], | ||
"connect": { | ||
"port": 5020, | ||
"host": "localhost", | ||
}, | ||
"justMyCode": false | ||
} | ||
] | ||
} |
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,15 @@ | ||
import os | ||
import debugpy | ||
import logging | ||
|
||
def config_to_bool(value): | ||
return str(value).lower() in ('true', '1', 'yes', 'on') | ||
|
||
def check_and_enable_debugpy(): | ||
debugpy_enable = config_to_bool(os.getenv('DEBUGPY_ENABLE', False)) | ||
debugpy_address = '0.0.0.0' | ||
debugpy_port = 5020 | ||
|
||
if debugpy_enable: | ||
logging.debug('DEBUGPY: Enabled Listening on ({0}:{1})'.format(debugpy_address, debugpy_port)) | ||
debugpy.listen((debugpy_address, debugpy_port)) |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,29 +1,31 @@ | ||
gunicorn==22.0.0 | ||
gunicorn==23.0.0 | ||
mysqlclient==2.1.1 | ||
|
||
# Django and related | ||
Django==4.2.16 | ||
django-csp==3.7 # For Content Security Policy | ||
django-db-file-storage==0.5.5 # Support for storage in the database | ||
django-db-file-storage==0.5.6.1 # Support for storage in the database | ||
django-mysql==4.15.0 | ||
django-tinymce==4.1.0 # Rich text editor | ||
django-watchman==1.3 | ||
django-webpack-loader==1.6.0 | ||
Pillow==10.3.0 | ||
Pillow==11.0.0 | ||
whitenoise==6.2.0 # For serving static files | ||
|
||
# DRF | ||
djangorestframework==3.15.2 | ||
django-filter==22.1 # Filtering support | ||
django-filter==24.3 # Filtering support | ||
drf-spectacular==0.22.1 | ||
markdown==3.4.1 # Markdown support for the browsable API | ||
|
||
# LTI | ||
pycryptodome==3.19.1 # For generating LTI keys | ||
PyLTI1p3==1.12.1 | ||
pycryptodome==3.21.0 # For generating LTI keys | ||
PyLTI1p3==2.0.0 | ||
|
||
# Canvas | ||
canvasapi==2.2.0 | ||
canvasapi==3.3.0 | ||
|
||
debugpy==1.8.8 | ||
|
||
# Not in pypi https://github.com/Harvard-University-iCommons/django-canvas-oauth | ||
https://github.com/Harvard-University-iCommons/django-canvas-oauth/archive/v1.1.0.tar.gz | ||
https://github.com/Harvard-University-iCommons/django-canvas-oauth/archive/v1.1.1.tar.gz |