Skip to content

Commit 8cf2fa8

Browse files
committed
introduction 번역 시작하기로 통일
1 parent 74ac101 commit 8cf2fa8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+122
-122
lines changed

artisan.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 아티즌 콘솔
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [명령어 작성하기](#writing-commands)
55
- [명령 생성](#generating-commands)
66
- [명령어의 구조](#command-structure)
@@ -19,7 +19,7 @@
1919
- [다른 명령에서 명령 호출](#calling-commands-from-other-commands)
2020

2121
<a name="introduction"></a>
22-
## 소개
22+
## 시작하기
2323

2424
아티즌(Artisan)은 라라벨에 포함된 커맨드라인 인터페이스(CLI)의 이름입니다. 아티즌은 애플리케이션 개발에 도움을 주는 많은 명령어들을 제공합니다. 실행가능한 아티즌 명령어 목록을 확인하려면 `list` 명령어를 다음과 같이 입력하면 됩니다.
2525

authentication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 인증
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [데이터베이스 유의사항](#introduction-database-considerations)
55
- [빠르게 인증 살펴보기](#authentication-quickstart)
66
- [Routing-라우팅](#included-routing)
@@ -25,7 +25,7 @@
2525
- [이벤트](#events)
2626

2727
<a name="introduction"></a>
28-
## 소개
28+
## 시작하기
2929

3030
> {tip} ** 빠르게 시작하길 원하십니까? ** 새로이 생성한 Laravel 응용 프로그램에서 `php artisan make:auth``php artisan migrate`를 실행하십시오. 그 다음, 브라우저에서 `http://your-app.test/register` 또는 다른 URL로 이동하세요. 이 두개의 명령어는 전체적인 인증 시스템을 스캐폴딩합니다.
3131

authorization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 권한 확인
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [Gate](#gates)
55
- [Gates 작성하기](#writing-gates)
66
- [액션을 수행할 수 있는 권한 확인하기](#authorizing-actions-via-gates)
@@ -19,7 +19,7 @@
1919
- [블레이드 템플릿을 통해서](#via-blade-templates)
2020

2121
<a name="introduction"></a>
22-
## 소개하기
22+
## 시작하기
2323

2424
별다른 설정 없이도 [인증-authentication](/docs/{{version}}/authentication) 기능을 제공하는 것에 더하여, 라라벨은 주어진 특정 리소스에 대하여 사용자가 액션을 수행할 수 있는지 권한을 확인하는(authorize) 간단한 방법을 제공합니다. 사용자 인증처럼, 권한 확인에 대한 라라벨의 접근 방식은 간단하며, 액션을 수행할 수 있는 권한을 확인하는 두가지 기본 방법이 있습니다: gate 와 policy 입니다.
2525

billing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 라라벨 캐셔
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [설정하기](#configuration)
55
- [Stripe](#stripe-configuration)
66
- [Braintree](#braintree-configuration)
@@ -28,7 +28,7 @@
2828
- [청구서 PDF로 생성하기](#generating-invoice-pdfs)
2929

3030
<a name="introduction"></a>
31-
## 소개하기
31+
## 시작하기
3232

3333
라라벨 캐셔는 [Stripe](https://stripe.com)[Braintree](https://www.braintreepayments.com)에 의해서 제공되는 손쉽고 편리한 구독(정기 과금) 서비스를 위한 인터페이스를 제공합니다. 라라벨 캐셔는 여러분이 작성하는데 어려움을 겪는 구독을 위한 청구서에서 필요한 거의 모든 관용구문들을 다룹니다. 기본적인 구독 관리 외에도, 캐셔를 통해서 쿠폰 관리, 구독 변경, 구매 수량 변경, 취소 유예 기간, 그리고 청구서를 PDF로 생성할 수도 있습니다.
3434

blade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 블레이드 템플릿
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [템플릿 상속](#template-inheritance)
55
- [레이아웃 정의하기](#defining-a-layout)
66
- [레이아웃 확장하기](#extending-a-layout)
@@ -22,7 +22,7 @@
2222
- [커스텀 If 구문](#custom-if-statements)
2323

2424
<a name="introduction"></a>
25-
## 소개하기
25+
## 시작하기
2626

2727
블레이드는 라라벨에서 제공하는 간단하지만 강력한 템플릿 엔진입니다. 다른 인지도 높은 PHP 템플릿 엔진들과는 달리 블레이드는 뷰에서 순수한 PHP 코드를 작성하는 것을 허용합니다. 실제로는, 모든 블레이드 뷰는 단순한 PHP 코드로 컴파일되고 변경되기 전까지 캐시 됩니다. 이는 블레이드가 애플리케이션에 아무런 부담을 주지 않는다는 것을 의미합니다. 블레이드 뷰 파일은 `.blade.php` 형식의 파일 확장자를 사용하고 주로 `resources/views`에 저장됩니다.
2828

broadcasting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 브로드캐스팅
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [설정하기](#configuration)
55
- [드라이버 사전준비사항](#driver-prerequisites)
66
- [컨셉 개요](#concept-overview)
@@ -29,7 +29,7 @@
2929
- [알림](#notifications)
3030

3131
<a name="introduction"></a>
32-
## 소개하기
32+
## 시작하기
3333

3434
많은 현대적인 웹 애플리케이션들은 웹 소캣을 이용하여 실시간 애플리케이션을 구현하며 UI를 실시간으로 업데이트합니다. 일반적으로 서버에 데이터가 변경되면 메세지가 웹 소캣 연결로 보내져 클라이언트에 의해 처리될 수 있도록 합니다. 웹 소켓은 당신의 애플리케이션의 변화를 지속적으로 폴링하는 더 강력하고 효과적인 대안을 제공합니다.
3535

collections.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# 컬렉션
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [컬렉션 생성하기](#creating-collections)
55
- [컬렉션 확장하기](#extending-collections)
66
- [사용 가능한 메소드](#available-methods)
77
- [Higher Order Messages](#higher-order-messages)
88

99
<a name="introduction"></a>
10-
## 소개하기
10+
## 시작하기
1111

1212
`Illuminate\Support\Collection` 클래스는 배열 데이터를 사용하기위한 유연하고 편리한 래퍼(wrapper)를 제공합니다. 다음의 사용예제를 확인하십시오. `collect` 헬퍼 함수를 사용하여 배열에서 새로운 collection 인스턴스를 생성하고 모든 요소들을 대문자로 변경한 다음 비어있는 요소들을 제거하는 예제 입니다:
1313

configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 설정
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [구동환경 설정](#environment-configuration)
55
- [환경 변수의 타입](#environment-variable-types)
66
- [구동환경 조회하기](#retrieving-environment-configuration)
@@ -10,7 +10,7 @@
1010
- [점검(공사중) 모드](#maintenance-mode)
1111

1212
<a name="introduction"></a>
13-
## 소개
13+
## 시작하기
1414

1515
라라벨의 모든 설정 파일은 `config` 디렉토리에 저장됩니다. 모든 파일에는 개별 옵션에 대한 설명이 들어 있으니 해당 옵션에 대해 이해하는데 도움을 받을 수 있습니다.
1616

container.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 서비스 컨테이너
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [바인딩](#binding)
55
- [기본적인 바인딩](#binding-basics)
66
- [인터페이스에 구현객체 바인딩하기](#binding-interfaces-to-implementations)
@@ -14,7 +14,7 @@
1414
- [PSR-11](#psr-11)
1515

1616
<a name="introduction"></a>
17-
## 소개
17+
## 시작하기
1818

1919
라라벨의 서비스 컨테이너는 클래스의 의존성을 관리하고 의존성을 주입하는 강력한 도구 입니다. 의존성 주입이라는 멋진 말의 의미는 다음과 같습니다: 클래스간의 의존성은 클래스 생성될 때 또는 경우에 따라 "setter" 메소드에 의해서 "주입" 된다는 의미입니다.
2020

contracts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contracts
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [Contracts Vs. Facades](#contracts-vs-facades)
55
- [Contracts 사용시기](#when-to-use-contracts)
66
- [느슨한 결합](#loose-coupling)
@@ -9,7 +9,7 @@
99
- [Contract 참고](#contract-reference)
1010

1111
<a name="introduction"></a>
12-
## 소개
12+
## 시작하기
1313

1414
라라벨의 Contract는 프레임워크에서 제공하는 코어 서비스들을 정의한 인터페이스들의 모음입니다. 예를 들어, `Illuminate\Contracts\Queue\Queue` Contract에는 어떤 작업들을 큐에서 다룰때 필요한 메소드들이 정의되어 있고, `Illuminate\Contracts\Mail\Mailer` Contract에는 이메일을 보내기 위해 필요한 메소드들을 정의되어 있습니다.
1515

controllers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 컨트롤러
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [기본적인 컨트롤서](#basic-controllers)
55
- [컨트롤러 정의](#defining-controllers)
66
- [컨트롤러 & 네임스페이스](#controllers-and-namespaces)
@@ -16,7 +16,7 @@
1616
- [라우트 캐싱](#route-caching)
1717

1818
<a name="introduction"></a>
19-
## 소개
19+
## 시작하기
2020

2121
애플리케이션의 요청에 대한 모든 처리 로직을 하나의 `routes.php` 파일에 정의하는 것 보다 별도의 컨트롤러 클래스를 통해서 구성할 수도 있습니다. 컨트롤러는 클래스를 구성하여 HTTP 요청에 대한 그룹을 지정합니다. 컨트롤러는 `app/Http/Controllers` 디렉토리에 저장 됩니다.
2222

csrf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# CSRF 보호
22

3-
- [소개하기](#csrf-introduction)
3+
- [시작하기](#csrf-introduction)
44
- [특정 URI 제외시키기](#csrf-excluding-uris)
55
- [X-CSRF-Token](#csrf-x-csrf-token)
66
- [X-XSRF-Token](#csrf-x-xsrf-token)
77

88
<a name="csrf-introduction"></a>
9-
## 소개하기
9+
## 시작하기
1010

1111
라라벨은 [크로스-사이트 요청 위조 공격](https://en.wikipedia.org/wiki/Cross-site_request_forgery) (CSRF)으로부터 애플리케이션을 손쉽게 보호할 수 있도록 해줍니다. 사이트 간 요청 위조는 인증된 사용자를 대신해서 승인되지 않은 커맨드를 악의적으로 활용하는 것입니다.
1212

database-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 데이터베이스 테스팅
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [팩토리 생성하기](#generating-factories)
55
- [각각의 테스트 수행 후에 데이터베이스 재설정하기](#resetting-the-database-after-each-test)
66
- [팩토리 작성하기](#writing-factories)
@@ -13,7 +13,7 @@
1313
- [사용 가능한 Assertions](#available-assertions)
1414

1515
<a name="introduction"></a>
16-
## 소개하기
16+
## 시작하기
1717

1818
라라벨은 데이터베이스를 기반으로 하는 애플리케이션을 손쉽게 테스트 할수 있도록 도와주는 다양한 툴을 제공합니다. 우선 `assertDatabaseHas` 헬퍼를 이용하여 데이터베이스 안에 특정 조건을 만족하는 데이터가 존재하는지 확인할 수 있습니다. 예를 들어, `users` 테이블에 `[email protected]``email` 값을 가진 레코드가 존재하는지 확인하기 위해 다음과 같이 할 수 있습니다:
1919

database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 데이터베이스 : 시작하기
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [설정하기](#configuration)
55
- [읽기 & 쓰기 커넥션](#read-and-write-connections)
66
- [여러개의 데이터베이스 커넥션 사용하기](#using-multiple-database-connections)
@@ -9,7 +9,7 @@
99
- [데이터베이스 트랙잭션](#database-transactions)
1010

1111
<a name="introduction"></a>
12-
## 소개하기
12+
## 시작하기
1313

1414
라라벨은 직접 raw SQL을 사용할 때에도, [쿼리 빌더](/docs/{{version}}/queries)를 사용하거나 그리고 [Eloquent ORM](/docs/{{version}}/eloquent)을 사용할 때에도 데이터베이스를 처리하는 것이 쉽도록 해줍니다. 현재 라라벨은 4가지 데이터베이스를 지원하고 있습니다:
1515

deployment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 배포
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [서버 설정하기](#server-configuration)
55
- [Nginx](#nginx)
66
- [최적화](#optimization)
@@ -10,7 +10,7 @@
1010
- [Forge에서 배포하기](#deploying-with-forge)
1111

1212
<a name="introduction"></a>
13-
## 소개하기
13+
## 시작하기
1414

1515
여러분의 라라벨 애플리케이션이 실제 서비스에 배포할 준비가 되었다면, 가능한 한 효율적으로 애플리케이션이 구동되도록 하기 위해서 할 수 있는 몇가지 중요한 작업이 있습니다. 이 문서에서는 라라벨 애플리케이션이 제대로 배포되었는지 확인하기 위한 시발점에 대해서 설명합니다.
1616

dusk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 브라우저 테스트 (라라벨 Dusk)
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [설치하기](#installation)
55
- [다른 브라우저 사용하기](#using-other-browsers)
66
- [시작하기](#getting-started)
@@ -39,7 +39,7 @@
3939
- [Travis CI](#running-tests-on-travis-ci)
4040

4141
<a name="introduction"></a>
42-
## 소개하기
42+
## 시작하기
4343

4444
라라벨 Dusk는 구성과 사용이 쉬운 브라우저 자동화 및 테스팅 API를 제공합니다. 기본적으로 Dusk는 사용자 머신에 JDK 나 Selenium을 설치하도록 요구하지 않습니다. 대신에 Dusk는 독립적인 [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/home)를 사용합니다. 그렇긴 하지만, 원하는 경우 다른 Selenium 호환 드라이버를 사용할 수도 있습니다.
4545

eloquent-collections.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Eloquent: Collections
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [사용 가능한 메소드들](#available-methods)
55
- [커스텀-사용자 정의 Collections](#custom-collections)
66

77
<a name="introduction"></a>
8-
## 소개
8+
## 시작하기
99

1010
`get` 메소드를 통하거나 하나의 `relationship-관계`를 통해서 Eloquent로 부터 반환되는 모든 멀티 레코드 결과는 `Illuminate\Database\Eloquent\Collection` 객체의 인스턴스가 됩니다. Eloquent 컬렉션 객체는 라라벨의 [base collection](/docs/{{version}}/collections)을 상속받기 때문에, 자연스럽게 ELoquent 모델에 대한 결과에서 다양하고 편리한 메소드들을 사용할 수 있습니다.
1111

eloquent-mutators.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Eloquent: Mutators
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [Accessors & Mutators](#accessors-and-mutators)
55
- [Accessor 정의하기](#defining-an-accessor)
66
- [Mutator 정의하기](#defining-a-mutator)
@@ -9,7 +9,7 @@
99
- [배열 & JSON 캐스팅](#array-and-json-casting)
1010

1111
<a name="introduction"></a>
12-
## 소개하기
12+
## 시작하기
1313

1414
Accessors 와 mutators 는 Eloquent 모델에서 속성값을 찾을 때나 값을 설정할 때 포맷을 가능하게 합니다. 예를 들어 데이터베이스에서 값을 저장할 때, [라라벨 encrypter](/docs/{{version}}/encryption)을 사용하여 값을 암호화 하고, Eloquent 모델에서 값에 엑세스 할 때 자동으로 복호화 하기를 원할 수도 있습니다.
1515

eloquent-relationships.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Eloquent: Relationships - 관계
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [관계 정의하기](#defining-relationships)
55
- [1:1(일대일) 관계](#one-to-one)
66
- [1:*(일대다) 관계](#one-to-many)
@@ -25,7 +25,7 @@
2525
- [부모의 타임스탬프 값 갱신하기](#touching-parent-timestamps)
2626

2727
<a name="introduction"></a>
28-
## 소개하기
28+
## 시작하기
2929

3030
데이터베이스 테이블은 주로 서로 관련되어 있습니다. 예를 들어, 한 블로그 포스트가 많은 댓글을 가지고 있거나 어떤 명령이 그 명령을 내린 사용자와 관련되어 있을 수 있습니다. Eloquent는 이 relationship들과 관련한 작업을 하거나 관리하는 것을 쉽게 해주며 여러 타입의 relationship을 지원합니다:
3131

eloquent-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Eloquent: API Resources
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [리소스 클래스 생성하기](#generating-resources)
55
- [컨셉 살펴보기](#concept-overview)
66
- [리소스 클래스 작성하기](#writing-resources)
@@ -12,7 +12,7 @@
1212
- [리소스 응답](#resource-responses)
1313

1414
<a name="introduction"></a>
15-
## 소개하기
15+
## 시작하기
1616

1717
API 를 작성할 때, 애플리케이션의 사용자에게 Eloquent 모델을 JSON response로 전달해주기 위한 변환 레이어(transformation layer)가 필요할 수 있습니다. 라라벨의 리소스 클래스는 손쉽게 이 모델과 모델 컬렉션을 JSON으로 표현하도록 지원해줍니다.
1818

eloquent-serialization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Eloquent: Serialization
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [모델 & 컬렉션 Serializing](#serializing-models-and-collections)
55
- [배열로 Serializing](#serializing-to-arrays)
66
- [JSON 으로 Serializing](#serializing-to-json)
@@ -9,7 +9,7 @@
99
- [날짜 Serialization](#date-serialization)
1010

1111
<a name="introduction"></a>
12-
## 소개하기
12+
## 시작하기
1313

1414
JSON API를 구성할 때, 여러분은 자주 특정 모델과, 연관된 모델들을 배열 또는 JSON 으로 변환해야될 필요가 있을 것입니다. Eloquent 는 serialization 에서 이러한 변환들과, 어떠한 속성들이 JSON에 포함되어야 하는지 제어할 수 있도록 편리한 메소드들을 가지고 있습니다.
1515

eloquent.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Eloquent: 시작하기
22

3-
- [소개](#introduction)
3+
- [시작하기](#introduction)
44
- [모델 정의하기](#defining-models)
55
- [Eloquent 모델 컨벤션](#eloquent-model-conventions)
66
- [모델 조회하기](#retrieving-models)
@@ -24,7 +24,7 @@
2424
- [옵저버](#observers)
2525

2626
<a name="introduction"></a>
27-
## 소개하기
27+
## 시작하기
2828

2929
라라벨에 포함된 Eloquent ORM은 여러분의 데이터베이스에서 동작하는 아름답고 심플한 액티브 레코드를 제공합니다. 각각의 데이터베이스 테이블은 이에 해당하는 "모델"을 가지고 있습니다.
3030

encryption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# 암호화
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [설정하기](#configuration)
55
- [Encrypter 사용하기](#using-the-encrypter)
66

77
<a name="introduction"></a>
8-
## 소개하기
8+
## 시작하기
99

1010
라라벨의 encrypter AES-256 과 AES-128 암호화를 제공하기 위해서 OpelSSL을 사용합니다. 라라벨에 내장된 암호화 기능은 매우 강력합니다. 따라서 여러분의 "고유한" 암호화 알고리즘을 구성하지 않는 것이 좋습니다. 라라벨의 모든 암호화된 값은 (MAC) 메세지 인증 코드를 사용하여 서명되고, 따라서 한번 암호화 되면 값을 변경할 수 없습니다.
1111

envoy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Envoy 작업 실행관리자
22

3-
- [소개하기](#introduction)
3+
- [시작하기](#introduction)
44
- [설치하기](#installation)
55
- [작업 작성하기](#writing-tasks)
66
- [설정하기](#setup)
@@ -13,7 +13,7 @@
1313
- [슬랙](#slack)
1414

1515
<a name="introduction"></a>
16-
## 소개하기
16+
## 시작하기
1717

1818
[라라벨 Envoy](https://github.com/laravel/envoy)는 원격 서버에서 정의된 공통의 작업을 수행하기 위한 깔끔하고 간결한 문법을 제공합니다. 블레이드 스타일의 문법을 사용하여 손쉽게 배포, 아티즌 명령어 등의 작업을 설정할 수 있습니다. 현재 Envoy 는 맥과 리눅스 OS를 지원하고 있습니다.
1919

0 commit comments

Comments
 (0)