1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-28 19:44:56 +02:00
tldr/pages.ko/common/cake.md

36 lines
678 B
Markdown

# cake
> CakePHP 프레임 워크용 명령어 라인 프로세서.
> 더 많은 정보: <https://cakephp.org>.
- 현재 앱 및 사용 가능한 명령어에 대한 기본 정보 표시:
`cake`
- 사용 가능한 경로 리스트 표시:
`cake routes`
- 구성 캐시 지우기:
`cake cache clear_all`
- 메타데이터 캐시 구축:
`cake schema_cache build --connection {{연결할것}}`
- 메타데이터 캐시 지우기:
`cake schema_cache clear`
- 단일 캐시 테이블 지우기:
`cake schema_cache clear {{테이블_이름}}`
- 개발 웹 서버 시작 (포트 기본값 8765):
`cake server`
- REPL 대화형 쉘 인스턴스 시작:
`cake console`