create-akan-workspace 2.2.13-rc.1 → 2.3.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.ko.md +58 -0
  2. package/package.json +1 -1
package/README.ko.md ADDED
@@ -0,0 +1,58 @@
1
+ # Create Akan Workspace
2
+
3
+ 새 Akan.js 워크스페이스를 가장 빠르게 만드는 스캐폴딩 패키지입니다. 이 패키지는 Akan.js CLI를 설치하고
4
+ 워크스페이스 생성 마법사를 실행하는 단일 진입점을 제공합니다.
5
+
6
+ ## 시작하기
7
+
8
+ ```bash
9
+ bunx create-akan-workspace
10
+ ```
11
+
12
+ 이 명령은 다음 작업을 수행합니다.
13
+
14
+ 1. 최신 `akanjs` CLI 설치
15
+ 2. 인터랙티브 워크스페이스 생성 마법사 실행
16
+ 3. 개발 환경과 초기 애플리케이션 구성
17
+
18
+ ## 예시
19
+
20
+ ```bash
21
+ # 인터랙티브 모드
22
+ bunx create-akan-workspace
23
+
24
+ # 조직 이름 지정
25
+ bunx create-akan-workspace "my-company"
26
+
27
+ # 앱 이름과 대상 경로 지정
28
+ bunx create-akan-workspace "my-company" --app "web-app" --dir "./projects"
29
+ ```
30
+
31
+ ## 옵션
32
+
33
+ | Option | Description | Example |
34
+ | --- | --- | --- |
35
+ | `[org]` | 조직 이름 | `my-company` |
36
+ | `-a, --app <name>` | 초기 애플리케이션 이름 | `--app web-app` |
37
+ | `-d, --dir <path>` | 생성 대상 경로 | `--dir ./projects` |
38
+
39
+ ## 요구사항
40
+
41
+ - Bun `>=1.3`
42
+
43
+ ## 다음 단계
44
+
45
+ ```bash
46
+ cd <workspace-name>
47
+ akan start <app-name> --open
48
+ ```
49
+
50
+ 프로덕션 빌드는 다음 명령으로 확인할 수 있습니다.
51
+
52
+ ```bash
53
+ akan build <app-name>
54
+ ```
55
+
56
+ ## 라이선스
57
+
58
+ 이 패키지는 Akan.js 생태계의 일부이며 MIT 라이선스를 따릅니다.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sourceType": "module",
3
3
  "name": "create-akan-workspace",
4
- "version": "2.2.13-rc.1",
4
+ "version": "2.3.1-rc.0",
5
5
  "bin": {
6
6
  "create-akan-workspace": "index.js"
7
7
  },