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