롭스의 소비자-점주 연결 서비스
- 재고확인(온라인/오프라인)
- 실시간 주문 *1시간 내 배달
- 회원관리
- 오프라인 매장 연결 *지도 API 이용
true면 판매자(지점장) -> Store에 연결
지점 저장
지점 이름(지점 리스트에 있는 이름)
제품 이름
브랜드 이름
제품 가격
상품 사진 메인 이미지(750x750): 1개 소개 이미지: 10개
지점 연결
제품 연결
제품 개수
방법1: 관리자 아이디로 로그인하여 /api/ 주소로 들어가기 방법2: REST 통신 보내기 (Rest Client 확장프로그램 추천)
pip install django
pip install Pillow
pip install djangorestframework
pip install django-filter
생성 pip freeze > requirements.txt
설치 pip install -r requirements.txt
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete
db.sqlite3
삭제
python manage.py makemigrations
python manage.py migrate
가상환경 실행: . myvenv/Scripts/activate
static 파일 모으기: python manage.py collectstatic
app 만들기: python manage.py startapp (앱이름)
관리자 만들기: python manage.py createsuperuser
관리자 편하게 만들기: python manage.py createsuperuser --email [email protected] --username admin
서버 포트 변경: python manage.py runserver 8080
이미 push된 file .gitignore 적용하기: git rm -r --cached .
superuser: admin/admin,