$ cd /{project-root}
$ docker-compose up app --build
$ pip install -r requirements.txt
$ DEBUG=on python app.py
$ cd /{project-root}
$ docker-compose up tests --build
$ cd proejct-kiwipiepy
$ DEBUG=on python -m pytest
project-root
├── src
│ ├── libs
│ │ ├── const.py
│ │ ├── debug.py
│ │ └── handler.py
│ └── resource
│ ├── comments.csv
│ └── userDict.txt
├── app.py # 메인 파일
├── docker-compose.yml
└── requirements.txt