This is sever deploy for the project of digital classroom which started by 2016 summer school of the USTC of software engeering.
Started by i9 on 07/09,2016 aimed at help students in the USTC to learn outside traditional classroom.
Our group(see below)'s duty is providing the server technology support for this project.
- clone 前端的仓库到项目目录下,在.gitignore中加入
web_page
,这样就能保持模板路径的方便以及git仓库的独立 - 实现通过网址去访问index.html
- 实现了登录和注册按钮的初步功能,登录和注册表单还要前端完成
- 请前端在
templates
里写users/login.html
和users/register.html
- 尝试写了下courses的模型
- setting.py里包括模板文件的位置,MySQL数据库的配置,语言和市区的设置
- 用户认证(登录,注册,找回密码)都是用Django自带的
contrib.auth
完成的