imooc-django
imooc-django copied to clipboard
高仿慕课网:py3.5 + Django1.10 + xadmin 搭建的在线课程教育平台
Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.2.0 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@radarhere, @hugovk] Restrict builtins within...
Bumps [django](https://github.com/django/django) from 1.11.28 to 2.2.24. Commits 2da029d [2.2.x] Bumped version for 2.2.24 release. f27c38a [2.2.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses. 053cc95 [2.2.x] Fixed CVE-2021-33203 --...
Bumps [httplib2](https://github.com/httplib2/httplib2) from 0.10.3 to 0.19.0. Changelog Sourced from httplib2's changelog. 0.19.0 auth: parse headers using pyparsing instead of regexp httplib2/httplib2#182 auth: WSSE token needs to be string not bytes...
I found these issues automatically via https://django.doctor/zaxlct/imooc-django most of the issues found were ORM issues: https://django.doctor/advice/performance
Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.2.0 to 9.3.0. Release notes Sourced from pillow's releases. 9.3.0 https://pillow.readthedocs.io/en/stable/releasenotes/9.3.0.html Changes Initialize libtiff buffer when saving #6699 [@radarhere] Limit SAMPLESPERPIXEL to avoid runtime DOS #6700 [@wiredfool]...
1.在进行build的过程中报错提示没有gunicorn 以及后续起服务的过程中提示xadmin错误 需要在Dockerfile中添加: && pip install gunicorn==19.9.0 \ && pip uninstall xadmin \ && pip install xadmin==0.6.1 \ 2.在docker环境中部署得时候, 运行docker-compose exec kele_imooc /usr/local/bin/python manage.py makemigrations报错: 根据错误提示是找不到host:mysql 根据查询发现在docker-compose.yml文件中得mysql的host名是:kele_mysql 而在settings.py的配置中database的host是:mysql 所有修改settings.py的配置中database的host为:kele_mysql 解决