- Docker 가 설치되어있지 않다면,각 환경에 맞는 Docker 설치를 진행하여 주세요.
$ docker-compose up --build
명령어를 통해 도커서버를 실행하여주세요.- 마이그레이션 작없이 있어 컨테이너 띄우는데 시간이 걸릴수 있습니다.
- GET /v1/search/companies?q=&type=company
query param | type | required | default |
---|---|---|---|
q | str | True | |
type | str | False | company |
- StatusCode: 200
- Response json data
{
"companies: [
{"id": int,
"names": [
{"name": str,
"lang": str
}],
"tags": [
{"id": str,
"tag": str,
"lang": str
}]
}
- GET /v1/search/companies?q=&type=tag
query param | type | required | default |
---|---|---|---|
q | str | True | |
type | str | True |
- StatusCode: 200
- Response json data
{
"companies: [
{"id": int,
"names": [
{"name": str,
"lang": str
}],
"tags": [
{"id": str,
"tag": str,
"lang": str
}]
}
- POST /v1/companies/<int:company_id>/tags
json data
{
"name": str,
"lang": str
}
- StatusCode: 201
- Response json data
{}
- DELETE /v1/companies/<int:company_id>/tags/<int:tag_id>
- StatusCode: 200
- Response json data
{}