Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 766 Bytes

File metadata and controls

37 lines (31 loc) · 766 Bytes

How to start a django project:

django-admin startproject myproject

Starting an app in django:

python manage.py startapp posts

How to activate python enviornment:

source env_site/bin/activate  

How to run server:

python manage.py runserver

Basic Outline of the Course:

1. Lesson_1: Start Here

2. Lesson_2: Apps & Templates

3. Lesson_3: Models & Migrations

4. Lesson_4: Django ORM

5. Lesson_5: Django Admin

6. Lesson_6: Pages, URLs & Slugs

7. Lesson_7: Upload Images

8. Lesson_8_Challenge: Created Register

9. Lesson_9: User Registration

10. Lesson_10: User Login and auth

11. Lesson_11: User Login and auth

12. Lesson_12: Custom Forms