작업대기 시리얼라이저부터 해야함

This commit is contained in:
2025-05-20 08:29:52 +09:00
parent b625e222f4
commit b172945fc5
15 changed files with 381 additions and 0 deletions

View File

@ -1,2 +1,36 @@
# msa-django-ansible
```bash
python3 -m venv ./venv
```
```bash
source ./venv/bin/activate
```
```bash
# 1. Django 및 DRF
pip install django==4.2.14 djangorestframework==3.15.2
# 2. 태그 기능 + CORS
pip install django-taggit django-cors-headers
# 3. JWT 인증
pip install djangorestframework-simplejwt
# 4. Swagger 문서 자동화
pip install drf-yasg
```
## start project
```bash
django-admin startproject ansible_prj .
```
## create app
```bash
python manage.py startapp ansible
```
ansible==10.7.0
ansible-core==2.17.7