1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:02:08 +02:00
tldr/pages.ko/common/mix.md
코드싸이 feb91d75ea
mpv: fix typo, common/m*: add and update Korean translation (#14664)
* common/m*: add and update Korean translation

* mpv: fix typo
2024-11-07 09:27:03 +09:00

430 B

mix

Elixir 프로젝트를 생성, 컴파일 및 테스트하고, 의존성을 관리하는 작업을 제공하는 빌드 도구. 더 많은 정보: https://hexdocs.pm/mix.

  • 특정 파일 실행:

mix run {{나의_스크립트.exs}}

  • 새 프로젝트 생성:

mix new {{프로젝트_이름}}

  • 프로젝트 컴파일:

mix compile

  • 프로젝트 테스트 실행:

mix test

  • 도움말 표시:

mix help