Django는 API를 Frontend로 데이터 전달
React는 전달받은 데이터로 Frontend 구성
데이터를 다루는 별도의 API 서버 생성
Serializer는 말 그대로 직렬화하는 클래스로서 사용자의 DB안에 사용자 프로필 사진, 이메일, 이름, 성별이 있다고 가정하면, 사용자 모델 인스턴스를 JSON형태 혹은 Dictionary형태로 직렬화 가능
-> Naver Clova Face Recognition API의 자료 형태와 호환이 좋을 것으로 예상
분리된 django 서버와 react 서버의 Cross-Domain Issue 해결
git clone https://github.com/teamFocus2021/Django-React.git
cd react_frontend
git submodule init
git submodule update
npm install
cd ..
pip install -r requirements.txt
python manage.py runserver react