mpv: fix typo, common/m*: add and update Korean translation (#14664)

* common/m*: add and update Korean translation

* mpv: fix typo
This commit is contained in:
코드싸이
2024-11-07 09:27:03 +09:00
committed by GitHub
parent cf45a79e8d
commit feb91d75ea
122 changed files with 2819 additions and 17 deletions

24
pages.ko/common/mix.md Normal file
View File

@@ -0,0 +1,24 @@
# mix
> Elixir 프로젝트를 생성, 컴파일 및 테스트하고, 의존성을 관리하는 작업을 제공하는 빌드 도구.
> 더 많은 정보: <https://hexdocs.pm/mix>.
- 특정 파일 실행:
`mix run {{나의_스크립트.exs}}`
- 새 프로젝트 생성:
`mix new {{프로젝트_이름}}`
- 프로젝트 컴파일:
`mix compile`
- 프로젝트 테스트 실행:
`mix test`
- 도움말 표시:
`mix help`