바디프로필 정보를 일일이 찾아보기 힘들었던 소비자들에게 본인이 원하는 취향을 반영하여 스튜디오,메이크업샵,왁싱,태닝샵을 한 번에 찾아보고 여러 예약을 관리할 수 있게 해주는 서비스
- Python
- Django
- Django REST Framework
- JWT
- AWS EC2
- AWS RDS (Postgresql)
- AWS ROUTE53
- AWS ELB
- AWS ACM
- Docker
- Git
- Gitkraken
- Notion
https://documenter.getpostman.com/view/15198716/Tzm8GFjs
bpp-plus-server
├── __init__.py
├── __pycache__
├── asgi.py
├── settings
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-39.pyc
│ │ ├── base.cpython-39.pyc
│ │ └── dev.cpython-39.pyc
│ ├── base.py
│ ├── dev.py
│ └── prod.py
├── urls.py
└── wsgi.py
config
├── __init__.py
├── __pycache__
│ └── __init__.cpython-39.pyc
├── docker
│ └── entrypoint.prod.sh
├── nginx
│ ├── Dockerfile
│ └── nginx.conf
└── scripts
└── deploy.sh
.github
└── workflows
└── deploy.yml
login
├── __init__.py
├── __pycache__
├── admin.py
├── apps.py
├── migrations
├── models.py
├── serializers.py
├── tests.py
├── urls.py
└── views.py
shop
├── __init__.py
├── __pycache__
├── admin.py
├── apps.py
├── migrations
├── models.py
├── serializers.py
├── tests.py
├── urls.py
concept
├── __init__.py
├── __pycache__
├── admin.py
├── apps.py
├── migrations
├── models.py
├── serializers.py
├── tests.py
├── urls.py
├── validators.py
└── views.py
reservation
├── __init__.py
├── __pycache__
├── admin.py
├── apps.py
├── migrations
├── models.py
├── serializers.py
├── tasks.py
├── tests.py
├── urls.py
└── views.py
cs
├── __init__.py
├── __pycache__
├── admin.py
├── apps.py
├── migrations
├── models.py
├── serializers.py
├── tests.py
├── urls.py
└── views.py
