CULTURE BOOK
- Likelion in Chungang University
Name | |
---|---|
최윤한(Leader) | [email protected] |
인세훈(Developer) | [email protected] |
민정호(PM, Developer) | [email protected] |
박채연(Developer) | [email protected] |
이성민(Developer) | [email protected] |
- Our service provides information and booking system about Korean culture experiences.
- Account : Supports
social login
- Feed : show picture and review for customer to check experiences
- Finding : User can find experiences that they want using Kakao map API
- Reservation : Customer can book experience with payment system
$ git clone https://github.com/LikeLion-CAU-9th/Philo-coders.git
$ git pull origin develop
$ python -m venv myvenv
$ source myvenv/scripts/activate mac) source myvenv/bin/activate
$ cd Byurak
$ ./manage.py makemigrations
$ ./manage.py migrate
$ ./manage.py runserver
$ pip install -r requirements.txt
$ pip freeze > requirements.txt
- if there is no
Redis
container
$ docker ps
$ docker run -p 6379:6379 -d redis:5
- Master branch : It is Manage only the state that can be distributed
- Develop branch : It is Used to merge branches for feature development
- Feature branch : Branch to develop the function ex)feature/profile
- Fix branch : Branch to fix the function ex)fix/profile
git commit -m "text"
Keyword | Description |
---|---|
[feat] | 코드나 테스트, 예제, 문서 등의 추가가 있을 때 사용 |
[refactor] | 올바르지 않은 로직을 고친 경우에 사용 |
[style] | 코드에 대한 스타일을 바꿀 때 |
[docs(guide)] | 문서 작업을 할 때 |