course stream in django
1.0.0
1)。手动运行所有命令
git clone https://github.com/yogeshnile/course-stream-in-django.gitcd course-stream-in-djangopython3 -m venv venvsource venv/bin/activatepip install -r requirements.txt安装unignts.txt中提到的所有库python manage.py runserver2)。运行shell脚本
git clone https://github.com/yogeshnile/unix.gitchmod +x course-stream-in-django.sh授予cousse-stream-in-in-django.sh文件的执行权限./course-stream-in-django.sh course-stream-in-in-django.sh运行课程stream-in-in-django.sh文件

.
├── blog
│ ├── admin.py
│ ├── apps.py
│ ├── __init__.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── 0002_auto_20201004_1907.py
│ │ └── __init__.py
│ ├── models.py
│ ├── templatetags
│ │ ├── extras.py
│ │ └── __init__.py
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── db2.sqlite3
├── db.sqlite3
├── Images
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ └── 8.png
├── LICENSE
├── manage.py
├── mysite
│ ├── admin.py
│ ├── apps.py
│ ├── __init__.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── 0002_lecture_course.py
│ │ ├── 0003_auto_20201001_1806.py
│ │ ├── 0004_auto_20201002_1139.py
│ │ ├── 0005_lecture_lecture_type.py
│ │ ├── 0006_lecturecomment.py
│ │ ├── 0007_course_course_price.py
│ │ └── __init__.py
│ ├── models.py
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── README.md
├── requirements.txt
├── secret key.json
├── startup
│ ├── asgi.py
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── static
│ ├── css
│ │ └── dashboard.css
│ ├── images
│ │ ├── Courses.png
│ │ └── courses.webp
│ └── js
│ ├── pass_validation.js
│ └── validation.js
├── student
│ ├── admin.py
│ ├── apps.py
│ ├── __init__.py
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── 0002_coursesubscription.py
│ │ ├── 0003_coursesubscription_datestamp.py
│ │ ├── 0004_auto_20201102_1949.py
│ │ ├── 0005_coursesubscription_payment_id.py
│ │ ├── 0006_auto_20201104_1008.py
│ │ ├── 0007_auto_20201104_1238.py
│ │ ├── 0008_studentinfo_email_id.py
│ │ └── __init__.py
│ ├── models.py
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── templates
│ ├── 404.html
│ ├── base.html
│ ├── blog
│ │ ├── blog.html
│ │ └── blogpost.html
│ ├── course
│ │ ├── checkout.html
│ │ ├── course_detail.html
│ │ ├── courses.html
│ │ ├── index.html
│ │ ├── lecture.html
│ │ └── pricing.html
│ └── student
│ ├── change_password.html
│ ├── info.html
│ └── user_course.html
└── validation
├── admin.py
├── apps.py
├── __init__.py
├── migrations
│ └── __init__.py
├── models.py
├── tests.py
├── urls.py
└── views.py
19 directories, 89 files







如果您找到一个错误(网站无法处理查询和 /或给出不希望的结果),请在此处通过包括您的搜索查询和预期结果来打开一个问题。
如果您想请求新功能,请随时在此处打开问题。请包括样本查询及其相应的结果。
在互联网上被称为Yogesh Nile