course stream in django
1.0.0
1). Jalankan semua perintah secara manual
git clone https://github.com/yogeshnile/course-stream-in-django.gitcd course-stream-in-djangopython3 -m venv venvsource venv/bin/activatepip install -r requirements.txtpython manage.py runserver2). Jalankan skrip shell
git clone https://github.com/yogeshnile/unix.gitchmod +x course-stream-in-django.sh./course-stream-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







Jika Anda menemukan bug (situs web tidak dapat menangani kueri dan / atau memberikan hasil yang tidak diinginkan), buka masalah di sini dengan memasukkan permintaan pencarian Anda dan hasil yang diharapkan.
Jika Anda ingin meminta fungsi baru, jangan ragu untuk melakukannya dengan membuka masalah di sini. Harap sertakan kueri sampel dan hasil yang sesuai.
Dikenal di internet sebagai Yogesh Nile