1. Урок 1. 00:02:21
    Welcome to Build a Backend API with Django REST Framework - Advanced
  2. Урок 2. 00:02:25
    Intro to the course
  3. Урок 3. 00:01:04
    Course structure
  4. Урок 4. 00:00:55
    How to get the most out of this course
  5. Урок 5. 00:01:26
    How to get help
  6. Урок 6. 00:00:49
    Python
  7. Урок 7. 00:00:55
    Django
  8. Урок 8. 00:00:47
    Django REST Framework
  9. Урок 9. 00:00:36
    Docker
  10. Урок 10. 00:00:44
    Travis-CI
  11. Урок 11. 00:00:19
    Postgres
  12. Урок 12. 00:04:01
    What is test driven development?
  13. Урок 13. 00:02:51
    Setup new GitHub project
  14. Урок 14. 00:09:57
    Add Dockerfile
  15. Урок 15. 00:05:23
    Configure Docker Compose
  16. Урок 16. 00:02:57
    Create Django project
  17. Урок 17. 00:01:42
    Enable Travis-CI for project
  18. Урок 18. 00:07:16
    Create Travis-CI configuration file
  19. Урок 19. 00:05:48
    Writing a simple unit test
  20. Урок 20. 00:05:09
    Writing a unit test with TDD
  21. Урок 21. 00:02:53
    Create core app
  22. Урок 22. 00:05:42
    Add tests for custom user model
  23. Урок 23. 00:10:24
    Implement custom user model
  24. Урок 24. 00:03:26
    Normalize email addresses
  25. Урок 25. 00:02:37
    Add validation for email field
  26. Урок 26. 00:05:21
    Add support for creating superusers
  27. Урок 27. 00:09:31
    Add tests for listing users in Django admin
  28. Урок 28. 00:02:28
    Modify Django admin to list our custom user model
  29. Урок 29. 00:07:49
    Modify Django admin to support changing user model
  30. Урок 30. 00:04:57
    Modify Django admin to support creating users
  31. Урок 31. 00:05:26
    Add postgres to docker compose
  32. Урок 32. 00:05:44
    Add postgres support to Dockerfile
  33. Урок 33. 00:02:53
    Configure database in Django
  34. Урок 34. 00:01:31
    Mocking with unittests
  35. Урок 35. 00:11:44
    Add tests for wait_for_db command
  36. Урок 36. 00:07:32
    Add wait_for_db command
  37. Урок 37. 00:02:52
    Make docker compose wait for db
  38. Урок 38. 00:03:02
    Test in browser
  39. Урок 39. 00:03:30
    Create users app
  40. Урок 40. 00:16:44
    Add tests for create user API
  41. Урок 41. 00:13:53
    Add create user API
  42. Урок 42. 00:10:40
    Add tests for creating a new token
  43. Урок 43. 00:13:54
    Add create token API
  44. Урок 44. 00:11:51
    Add tests for manage user endpoint
  45. Урок 45. 00:11:25
    Add manage user endpoint
  46. Урок 46. 00:02:16
    Create recipe app
  47. Урок 47. 00:08:10
    Add tag model
  48. Урок 48. 00:12:09
    Add tests for listing tags
  49. Урок 49. 00:12:13
    Add feature to list tags
  50. Урок 50. 00:07:08
    Add create tags feature
  51. Урок 51. 00:04:09
    Add ingredient model
  52. Урок 52. 00:10:30
    Add tests for listing ingredients
  53. Урок 53. 00:05:05
    Implement feature for list ingredients
  54. Урок 54. 00:07:39
    Implement feature for creating ingredients
  55. Урок 55. 00:07:05
    Re-factor tags and ingredients viewsets
  56. Урок 56. 00:12:51
    Add recipe model
  57. Урок 57. 00:15:17
    Add tests for listing recipes
  58. Урок 58. 00:08:39
    Implement feature for listing recipes
  59. Урок 59. 00:09:13
    Add tests for retrieving recipe detail
  60. Урок 60. 00:07:07
    Implement feature for retrieving recipe detail
  61. Урок 61. 00:11:27
    Add tests for creating recipes
  62. Урок 62. 00:04:23
    Implement feature for creating recipes
  63. Урок 63. 00:09:43
    Add tests for updating recipes
  64. Урок 64. 00:12:16
    Add Pillow requirement
  65. Урок 65. 00:11:54
    Modify recipe model
  66. Урок 66. 00:13:30
    Add tests for uploading image to recipe
  67. Урок 67. 00:11:18
    Add feature to upload image
  68. Урок 68. 00:08:58
    Add tests for filtering recipes
  69. Урок 69. 00:09:20
    Implement feature to filter recipes
  70. Урок 70. 00:13:00
    Add tests for filtering tags and ingredients
  71. Урок 71. 00:06:32
    Implement feature for filtering tags and ingredients
  72. Урок 72. 00:00:53
    What was covered in this course