INTRO
Build a Backend REST API with Python & Django - Advanced
블로깅 한 내용은 파이썬, 도커, drf를 기반으로 udemy 영상을 시청한 것입니다.
THE END RESULT
Manager users
/api/user/create
/api/user/token
/api/user/me
Manager recipes
/api/recipe/tags
/api/recipe/ingredients
/api/recipe/recipe
/api/recipe/recipe//
/api/recipe/recipe//upload-image
/api/recipe/tags
RECIPIE API
- title
- price
- cooking duration
- ingredients
- tags
- images
user authentication
creating objects
listing/filtering
uploading images
PROCESS OF THE PROJECT
1. Technologies
2. Create new project
3. Setup automation
4. Intro to TDD
6. Setup Django admin
7. Setting up database
8. Waiting for postgres to start
9. Create user management endpoints
11. Create ingredients endpoint
12. Create recipe endpoint
13. Add upload image endpoint
14. Add filtering