├── README.md ├── lab01 ├── MicroKMS_v20.09.12_N.exe ├── README.md ├── ea │ ├── EA120_Reg_CN.msi │ ├── crack │ │ └── key.txt │ ├── 使用说明.txt │ └── 软件学堂-提供最安全的pc软件_免费Mac软件和最热门的游戏下载.url ├── 软工第一次上机讲解.pdf └── 软工第一次实验作业.pptx ├── lab02 ├── Git.pptx ├── GitHelp.md ├── 学号_姓名_第二次实验_任务二.docx ├── 第二次实验作业.pptx ├── 视频链接.txt └── 软工小组组号.xlsx └── lab03 ├── backend ├── Django基础.pdf └── Example code │ ├── db.sqlite3 │ ├── lab3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-36.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ └── wsgi.cpython-37.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py │ ├── manage.py │ ├── student │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── views.cpython-36.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ └── views.py │ └── template │ ├── home.html │ ├── login.html │ └── register.html ├── frontend ├── Example code.md └── 前端入门基础.pdf └── 前后端分离开发.pdf /README.md: -------------------------------------------------------------------------------- 1 | # software-engineering -------------------------------------------------------------------------------- /lab01/MicroKMS_v20.09.12_N.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/MicroKMS_v20.09.12_N.exe -------------------------------------------------------------------------------- /lab01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/README.md -------------------------------------------------------------------------------- /lab01/ea/EA120_Reg_CN.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/ea/EA120_Reg_CN.msi -------------------------------------------------------------------------------- /lab01/ea/crack/key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/ea/crack/key.txt -------------------------------------------------------------------------------- /lab01/ea/使用说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/ea/使用说明.txt -------------------------------------------------------------------------------- /lab01/ea/软件学堂-提供最安全的pc软件_免费Mac软件和最热门的游戏下载.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/ea/软件学堂-提供最安全的pc软件_免费Mac软件和最热门的游戏下载.url -------------------------------------------------------------------------------- /lab01/软工第一次上机讲解.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/软工第一次上机讲解.pdf -------------------------------------------------------------------------------- /lab01/软工第一次实验作业.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab01/软工第一次实验作业.pptx -------------------------------------------------------------------------------- /lab02/Git.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab02/Git.pptx -------------------------------------------------------------------------------- /lab02/GitHelp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab02/GitHelp.md -------------------------------------------------------------------------------- /lab02/学号_姓名_第二次实验_任务二.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab02/学号_姓名_第二次实验_任务二.docx -------------------------------------------------------------------------------- /lab02/第二次实验作业.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab02/第二次实验作业.pptx -------------------------------------------------------------------------------- /lab02/视频链接.txt: -------------------------------------------------------------------------------- 1 | https://bhpan.buaa.edu.cn:443/link/B1050F4874721BA38FD0FEFC7CDB0879 2 | 有效期限:2021-05-11 23:59 -------------------------------------------------------------------------------- /lab02/软工小组组号.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab02/软工小组组号.xlsx -------------------------------------------------------------------------------- /lab03/backend/Django基础.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Django基础.pdf -------------------------------------------------------------------------------- /lab03/backend/Example code/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/db.sqlite3 -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/asgi.py -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/settings.py -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/urls.py -------------------------------------------------------------------------------- /lab03/backend/Example code/lab3/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/lab3/wsgi.py -------------------------------------------------------------------------------- /lab03/backend/Example code/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/manage.py -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/admin.py -------------------------------------------------------------------------------- /lab03/backend/Example code/student/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/apps.py -------------------------------------------------------------------------------- /lab03/backend/Example code/student/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/migrations/0001_initial.py -------------------------------------------------------------------------------- /lab03/backend/Example code/student/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lab03/backend/Example code/student/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /lab03/backend/Example code/student/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/models.py -------------------------------------------------------------------------------- /lab03/backend/Example code/student/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/tests.py -------------------------------------------------------------------------------- /lab03/backend/Example code/student/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/student/views.py -------------------------------------------------------------------------------- /lab03/backend/Example code/template/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/template/home.html -------------------------------------------------------------------------------- /lab03/backend/Example code/template/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/template/login.html -------------------------------------------------------------------------------- /lab03/backend/Example code/template/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/backend/Example code/template/register.html -------------------------------------------------------------------------------- /lab03/frontend/Example code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/frontend/Example code.md -------------------------------------------------------------------------------- /lab03/frontend/前端入门基础.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/frontend/前端入门基础.pdf -------------------------------------------------------------------------------- /lab03/前后端分离开发.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BUAA-SE-2021/software-engineering/HEAD/lab03/前后端分离开发.pdf --------------------------------------------------------------------------------