@skyreve/reve 1.0.1 → 1.0.2
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.
- package/README.md +235 -118
- package/README.npm.md +3 -3
- package/bin/{staging/darwin → darwin}/reve +0 -0
- package/bin/{staging/linux → linux}/reve +0 -0
- package/bin/{revecli-stag → reve} +0 -0
- package/bin/{debug/windows → windows}/reve.exe +0 -0
- package/package.json +2 -2
- package/bin/debug/darwin/reve +0 -0
- package/bin/debug/linux/reve +0 -0
- package/bin/release/darwin/reve +0 -0
- package/bin/release/linux/reve +0 -0
- package/bin/release/windows/reve.exe +0 -0
- package/bin/revecli-dev +0 -0
- package/bin/revecli-dev-linux +0 -0
- package/bin/revecli-dev-mac +0 -0
- package/bin/revecli-dev.exe +0 -0
- package/bin/revecli-prod +0 -0
- package/bin/revecli-prod-linux +0 -0
- package/bin/revecli-prod-mac +0 -0
- package/bin/revecli-prod.exe +0 -0
- package/bin/revecli-stag-linux +0 -0
- package/bin/revecli-stag-mac +0 -0
- package/bin/revecli-stag.exe +0 -0
- package/bin/staging/windows/reve.exe +0 -0
package/README.md
CHANGED
|
@@ -1,50 +1,82 @@
|
|
|
1
|
-
# Reve
|
|
1
|
+
# Reve - SkyReve Platform Command Line Tool
|
|
2
2
|
|
|
3
|
-
Reve
|
|
4
|
-
|
|
3
|
+
Reve는 SkyReve 플랫폼과 GitHub 저장소를 연결하여 프로젝트와 환경을 관리하는 커맨드라인 도구입니다.
|
|
4
|
+
|
|
5
|
+
## 📋 목차 (Table of Contents)
|
|
6
|
+
|
|
7
|
+
1. [설치 방법](#1-설치-방법-installation)
|
|
8
|
+
2. [개발 환경 설정](#2-개발-환경-설정-development-setup)
|
|
9
|
+
3. [빌드](#3-빌드-build)
|
|
10
|
+
4. [환경별 바이너리 설명](#4-환경별-바이너리-설명)
|
|
11
|
+
5. [Reve CLI 사용법](#5-reve-cli-사용법-using-reve-cli)
|
|
12
|
+
6. [개발 도구](#6-개발-도구-development-tools)
|
|
5
13
|
|
|
6
14
|
---
|
|
7
15
|
|
|
8
16
|
## **1. 설치 방법 (Installation)**
|
|
9
17
|
|
|
10
18
|
### **1.1 npm을 통한 설치 (권장)**
|
|
19
|
+
|
|
11
20
|
다른 npm 프로젝트에서 Reve CLI를 사용하려면:
|
|
21
|
+
|
|
12
22
|
```bash
|
|
13
23
|
npm install @skyreve/reve
|
|
14
24
|
```
|
|
15
25
|
|
|
16
26
|
설치 후 `npx reve` 명령어로 실행할 수 있습니다:
|
|
27
|
+
|
|
17
28
|
```bash
|
|
18
29
|
npx reve --help
|
|
19
|
-
npx reve
|
|
20
|
-
npx reve init
|
|
30
|
+
npx reve start
|
|
21
31
|
```
|
|
22
32
|
|
|
23
33
|
### **1.2 글로벌 설치**
|
|
34
|
+
|
|
24
35
|
전역적으로 설치하려면:
|
|
36
|
+
|
|
25
37
|
```bash
|
|
26
38
|
npm install -g @skyreve/reve
|
|
27
39
|
```
|
|
28
40
|
|
|
29
41
|
설치 후 `reve` 명령어로 직접 실행할 수 있습니다:
|
|
42
|
+
|
|
30
43
|
```bash
|
|
31
44
|
reve --help
|
|
32
|
-
reve
|
|
33
|
-
reve init
|
|
45
|
+
reve start
|
|
34
46
|
```
|
|
35
47
|
|
|
36
48
|
---
|
|
37
49
|
|
|
38
50
|
## **2. 개발 환경 설정 (Development Setup)**
|
|
39
51
|
|
|
40
|
-
### **
|
|
52
|
+
### **2.1 Go 설치**
|
|
53
|
+
|
|
41
54
|
Reve CLI는 **Go**를 필요로 합니다. Go가 설치되지 않았다면 아래 명령어로 설치하세요:
|
|
55
|
+
|
|
56
|
+
**macOS:**
|
|
57
|
+
|
|
42
58
|
```bash
|
|
43
59
|
brew install go
|
|
44
60
|
```
|
|
45
61
|
|
|
46
|
-
|
|
62
|
+
**Linux:**
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
# Ubuntu/Debian
|
|
66
|
+
sudo apt update
|
|
67
|
+
sudo apt install golang-go
|
|
68
|
+
|
|
69
|
+
# CentOS/RHEL
|
|
70
|
+
sudo yum install golang
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
**Windows:**
|
|
74
|
+
[Go 공식 웹사이트](https://golang.org/dl/)에서 설치 파일을 다운로드하여 설치하세요.
|
|
75
|
+
|
|
76
|
+
### **2.2 프로젝트 초기화**
|
|
77
|
+
|
|
47
78
|
프로젝트를 클론하고 의존성을 설치합니다:
|
|
79
|
+
|
|
48
80
|
```bash
|
|
49
81
|
git clone git@github.com:SkyReve/reve-cli.git
|
|
50
82
|
cd reve-cli
|
|
@@ -53,83 +85,50 @@ go mod tidy
|
|
|
53
85
|
|
|
54
86
|
---
|
|
55
87
|
|
|
56
|
-
## **
|
|
88
|
+
## **3. 빌드 (Build)**
|
|
57
89
|
|
|
58
|
-
### **
|
|
59
|
-
npm을 통해 다양한 환경별로 빌드할 수 있습니다:
|
|
90
|
+
### **3.1 기본 빌드**
|
|
60
91
|
|
|
61
|
-
|
|
62
|
-
```bash
|
|
63
|
-
npm run build-dev
|
|
64
|
-
```
|
|
92
|
+
현재 OS용 바이너리를 빌드하려면:
|
|
65
93
|
|
|
66
|
-
#### **스테이징 환경 빌드**
|
|
67
94
|
```bash
|
|
68
|
-
|
|
95
|
+
make
|
|
69
96
|
```
|
|
70
97
|
|
|
71
|
-
|
|
72
|
-
```bash
|
|
73
|
-
npm run build
|
|
74
|
-
```
|
|
98
|
+
또는:
|
|
75
99
|
|
|
76
|
-
#### **정리**
|
|
77
100
|
```bash
|
|
78
|
-
|
|
101
|
+
make build
|
|
79
102
|
```
|
|
80
103
|
|
|
81
|
-
|
|
104
|
+
빌드가 완료되면 `bin/` 디렉토리에 `reve` 바이너리가 생성됩니다:
|
|
82
105
|
|
|
83
|
-
#### **현재 OS에서 환경별 바이너리 빌드**
|
|
84
|
-
현재 OS에서 **개발(debug), 스테이징(staging), 운영(release)** 환경별로 바이너리를 생성하려면:
|
|
85
|
-
```bash
|
|
86
|
-
make
|
|
87
|
-
```
|
|
88
|
-
또는 개별 환경별로:
|
|
89
|
-
```bash
|
|
90
|
-
make build-dev # 개발 환경
|
|
91
|
-
make build-stag # 스테이징 환경
|
|
92
|
-
make build-prod # 운영 환경
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
빌드가 완료되면, `bin/` 디렉토리에 아래 구조로 파일들이 생성됩니다:
|
|
96
106
|
```bash
|
|
97
107
|
bin/
|
|
98
|
-
|
|
99
|
-
├── staging/reve
|
|
100
|
-
└── release/reve
|
|
108
|
+
└── reve
|
|
101
109
|
```
|
|
102
110
|
|
|
103
|
-
|
|
111
|
+
### **3.2 모든 OS(Linux, macOS, Windows)용 바이너리 빌드**
|
|
112
|
+
|
|
113
|
+
모든 플랫폼용 바이너리를 빌드하려면:
|
|
114
|
+
|
|
104
115
|
```bash
|
|
105
116
|
make build-all
|
|
106
117
|
```
|
|
107
|
-
또는 개별 환경별로:
|
|
108
|
-
```bash
|
|
109
|
-
make build-all-dev # 개발 환경 (모든 OS)
|
|
110
|
-
make build-all-stg # 스테이징 환경 (모든 OS)
|
|
111
|
-
make build-all-release # 운영 환경 (모든 OS)
|
|
112
|
-
```
|
|
113
118
|
|
|
114
119
|
모든 OS에 대한 바이너리를 빌드하면 아래와 같은 구조로 파일이 생성됩니다:
|
|
120
|
+
|
|
115
121
|
```bash
|
|
116
122
|
bin/
|
|
117
|
-
├──
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
│ └── windows/reve.exe
|
|
125
|
-
└── release/
|
|
126
|
-
├── linux/reve
|
|
127
|
-
├── darwin/reve
|
|
128
|
-
└── windows/reve.exe
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
### **2.3 빌드된 바이너리 확인**
|
|
123
|
+
├── linux/reve
|
|
124
|
+
├── darwin/reve
|
|
125
|
+
└── windows/reve.exe
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### **3.3 빌드된 바이너리 확인**
|
|
129
|
+
|
|
132
130
|
빌드된 바이너리는 `bin/` 디렉토리에 저장됩니다. 확인하려면:
|
|
131
|
+
|
|
133
132
|
```bash
|
|
134
133
|
ls -la bin/
|
|
135
134
|
# 또는
|
|
@@ -138,97 +137,181 @@ tree bin/
|
|
|
138
137
|
|
|
139
138
|
---
|
|
140
139
|
|
|
141
|
-
## **
|
|
142
|
-
Reve CLI는 환경별로 다른 API 서버를 사용하도록 빌드됩니다.
|
|
140
|
+
## **4. 환경별 실행**
|
|
143
141
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
142
|
+
Reve CLI는 환경 변수 `REVE_ENV`를 통해 다른 API 서버를 사용합니다.
|
|
143
|
+
|
|
144
|
+
### **🔹 개발 환경 (dev)**
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
make run-dev
|
|
148
|
+
# 또는
|
|
149
|
+
REVE_ENV=dev ./bin/reve
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
- **BaseURL:** `http://localhost:8000`
|
|
153
|
+
- **GitHub App:** [https://github.com/apps/skyreve-staging](https://github.com/apps/skyreve-staging)
|
|
154
|
+
- **설명:** 개발 환경용입니다. 새로운 기능을 테스트하고 디버깅할 때 사용합니다.
|
|
155
|
+
|
|
156
|
+
### **🔹 스테이징 환경 (staging)**
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
make run-staging
|
|
160
|
+
# 또는
|
|
161
|
+
REVE_ENV=staging ./bin/reve
|
|
162
|
+
```
|
|
148
163
|
|
|
149
|
-
### **🔹 staging 환경 (스테이징)**
|
|
150
|
-
- **바이너리 경로:** `bin/staging/reve` (단일 OS) 또는 `bin/staging/{os}/reve` (모든 OS)
|
|
151
164
|
- **BaseURL:** `https://api.hellreve.world`
|
|
152
|
-
-
|
|
165
|
+
- **GitHub App:** [https://github.com/apps/skyreve-staging](https://github.com/apps/skyreve-staging)
|
|
166
|
+
- **설명:** 스테이징 환경용입니다. 운영 환경과 유사한 조건에서 최종 QA 및 검증에 사용됩니다.
|
|
167
|
+
|
|
168
|
+
### **🔹 운영 환경 (production)**
|
|
169
|
+
|
|
170
|
+
```bash
|
|
171
|
+
make run-production
|
|
172
|
+
# 또는
|
|
173
|
+
./bin/reve
|
|
174
|
+
```
|
|
153
175
|
|
|
154
|
-
### **🔹 release 환경 (운영)**
|
|
155
|
-
- **바이너리 경로:** `bin/release/reve` (단일 OS) 또는 `bin/release/{os}/reve` (모든 OS)
|
|
156
176
|
- **BaseURL:** `https://api.skyreve.cloud`
|
|
157
|
-
- **GitHub
|
|
158
|
-
- **설명:** 운영(프로덕션)
|
|
177
|
+
- **GitHub App:** [https://github.com/apps/skyreve](https://github.com/apps/skyreve)
|
|
178
|
+
- **설명:** 운영(프로덕션) 환경용입니다. 실제 사용자에게 제공되는 서비스 환경에서 사용됩니다.
|
|
159
179
|
|
|
160
180
|
---
|
|
161
181
|
|
|
162
|
-
## **
|
|
182
|
+
## **5. Reve CLI 사용법 (Using `reve`)**
|
|
183
|
+
|
|
184
|
+
### **5.1 npm을 통한 실행 (권장)**
|
|
163
185
|
|
|
164
|
-
### **4.1 npm을 통한 실행 (권장)**
|
|
165
186
|
npm으로 설치한 경우:
|
|
187
|
+
|
|
166
188
|
```bash
|
|
167
189
|
npx reve [COMMAND] [OPTIONS]
|
|
168
190
|
# 또는 글로벌 설치한 경우
|
|
169
191
|
reve [COMMAND] [OPTIONS]
|
|
170
192
|
```
|
|
171
193
|
|
|
172
|
-
### **
|
|
194
|
+
### **5.2 바이너리 직접 실행**
|
|
195
|
+
|
|
173
196
|
빌드된 바이너리를 직접 실행하는 경우:
|
|
197
|
+
|
|
174
198
|
```bash
|
|
175
199
|
# 개발 환경
|
|
176
|
-
./bin/
|
|
200
|
+
REVE_ENV=dev ./bin/reve [COMMAND] [OPTIONS]
|
|
177
201
|
|
|
178
|
-
# 스테이징 환경
|
|
179
|
-
./bin/
|
|
202
|
+
# 스테이징 환경
|
|
203
|
+
REVE_ENV=staging ./bin/reve [COMMAND] [OPTIONS]
|
|
180
204
|
|
|
181
|
-
# 운영 환경
|
|
182
|
-
./bin/
|
|
205
|
+
# 운영 환경 (기본값)
|
|
206
|
+
./bin/reve [COMMAND] [OPTIONS]
|
|
183
207
|
```
|
|
184
208
|
|
|
185
|
-
### **
|
|
209
|
+
### **5.3 도움말 확인**
|
|
210
|
+
|
|
186
211
|
```bash
|
|
187
212
|
reve --help
|
|
188
213
|
# 또는
|
|
189
214
|
npx reve --help
|
|
190
215
|
```
|
|
191
216
|
|
|
192
|
-
### **
|
|
193
|
-
| 명령어 | 설명 |
|
|
194
|
-
|--------|------|
|
|
195
|
-
| `reve init` | SkyReve 프로젝트 초기화 |
|
|
196
|
-
| `reve sync` | 원격 데이터와 동기화 |
|
|
197
|
-
| `reve status` | 프로젝트 상태 확인 |
|
|
198
|
-
| `reve deploy` | 프로젝트 배포 |
|
|
199
|
-
| `reve switch` | 프로젝트 및 브랜치 전환 |
|
|
200
|
-
| `reve github-init` | GitHub 연동 초기화 |
|
|
201
|
-
| `reve github-link` | GitHub 저장소 연결 |
|
|
202
|
-
| `reve github-unlink` | GitHub 저장소 연결 해제 |
|
|
217
|
+
### **5.4 주요 명령어**
|
|
203
218
|
|
|
204
|
-
|
|
219
|
+
#### **🔹 기본 명령어**
|
|
220
|
+
|
|
221
|
+
| 명령어 | 설명 |
|
|
222
|
+
| -------------------- | -------------------------------------- |
|
|
223
|
+
| `reve start` | 완전한 설정 과정을 거쳐 환경 관리 시작 |
|
|
224
|
+
| `reve login [email]` | SkyReve 플랫폼에 로그인 |
|
|
225
|
+
| `reve project` | 작업할 SkyReve 프로젝트 선택 |
|
|
226
|
+
|
|
227
|
+
#### **🔹 환경 관리 명령어 (`reve env`)**
|
|
205
228
|
|
|
206
|
-
|
|
229
|
+
| 명령어 | 설명 |
|
|
230
|
+
| -------------------------- | --------------------------------------------------------- |
|
|
231
|
+
| `reve env` | 대화형 환경 관리 시작 (`reve env start`와 동일한 동작) |
|
|
232
|
+
| `reve env start` | 대화형 환경 관리 시작 |
|
|
233
|
+
| `reve env info` | 프로젝트 정보, Git 저장소 정보, GitHub App 설치 상태 확인 |
|
|
234
|
+
| `reve env list` | 모든 Reve 환경과 연결된 GitHub 브랜치 정보 나열 |
|
|
235
|
+
| `reve env link <reve_env>` | GitHub 브랜치를 특정 Reve 환경에 연결 |
|
|
236
|
+
| `reve env sync` | 현재 저장소 브랜치를 Reve 환경과 동기화 |
|
|
237
|
+
| `reve env deploy` | 현재 저장소 브랜치를 Reve 환경에 배포 |
|
|
238
|
+
|
|
239
|
+
#### **🔹 GitHub 관련 명령어 (`reve github`)**
|
|
240
|
+
|
|
241
|
+
| 명령어 | 설명 |
|
|
242
|
+
| --------------------- | -------------------------------------- |
|
|
243
|
+
| `reve github login` | GitHub에 Device Flow를 사용하여 로그인 |
|
|
244
|
+
| `reve github install` | 현재 저장소에 GitHub App 설치 |
|
|
245
|
+
|
|
246
|
+
### **5.5 사용 예시**
|
|
247
|
+
|
|
248
|
+
#### **처음 사용하는 경우 (권장)**
|
|
207
249
|
|
|
208
|
-
### **5.1 실행 방법**
|
|
209
|
-
빌드된 바이너리를 실행하려면:
|
|
210
250
|
```bash
|
|
211
|
-
#
|
|
212
|
-
|
|
251
|
+
# 1. 완전한 설정 과정을 거쳐 시작
|
|
252
|
+
reve start
|
|
253
|
+
```
|
|
213
254
|
|
|
214
|
-
|
|
215
|
-
|
|
255
|
+
이 명령어는 다음 과정을 자동으로 수행합니다:
|
|
256
|
+
|
|
257
|
+
1. SkyReve 플랫폼 로그인
|
|
258
|
+
2. 프로젝트 선택/생성
|
|
259
|
+
3. GitHub 로그인
|
|
260
|
+
4. GitHub App 설치
|
|
261
|
+
5. 환경 관리 시작
|
|
262
|
+
|
|
263
|
+
#### **개별 설정**
|
|
264
|
+
|
|
265
|
+
```bash
|
|
266
|
+
# 1. SkyReve 플랫폼에 로그인
|
|
267
|
+
reve login your-email@example.com
|
|
268
|
+
|
|
269
|
+
# 2. 프로젝트 선택
|
|
270
|
+
reve project
|
|
216
271
|
|
|
217
|
-
#
|
|
218
|
-
|
|
272
|
+
# 3. GitHub에 로그인
|
|
273
|
+
reve github login
|
|
274
|
+
|
|
275
|
+
# 4. GitHub App 설치
|
|
276
|
+
reve github install
|
|
277
|
+
|
|
278
|
+
# 5. 환경 관리 시작
|
|
279
|
+
reve env start
|
|
219
280
|
```
|
|
220
281
|
|
|
221
|
-
|
|
222
|
-
|
|
282
|
+
#### **일상적인 사용**
|
|
283
|
+
|
|
223
284
|
```bash
|
|
224
|
-
#
|
|
225
|
-
|
|
285
|
+
# 환경 목록 확인
|
|
286
|
+
reve env list
|
|
287
|
+
|
|
288
|
+
# 특정 환경에 브랜치 연결
|
|
289
|
+
reve env link main
|
|
290
|
+
|
|
291
|
+
# 현재 브랜치 동기화
|
|
292
|
+
reve env sync
|
|
293
|
+
|
|
294
|
+
# 현재 브랜치 배포
|
|
295
|
+
reve env deploy
|
|
296
|
+
|
|
297
|
+
# 강제 배포 (충돌이 있어도)
|
|
298
|
+
reve env deploy --force
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
---
|
|
302
|
+
|
|
303
|
+
## **6. 개발 도구 (Development Tools)**
|
|
304
|
+
|
|
305
|
+
### **6.1 정리 (Clean)**
|
|
226
306
|
|
|
227
|
-
|
|
307
|
+
불필요한 빌드 파일을 정리하려면:
|
|
308
|
+
|
|
309
|
+
```bash
|
|
228
310
|
make clean
|
|
229
311
|
```
|
|
230
312
|
|
|
231
|
-
### **
|
|
313
|
+
### **6.2 테스트 및 린트**
|
|
314
|
+
|
|
232
315
|
```bash
|
|
233
316
|
# 테스트 실행
|
|
234
317
|
make test
|
|
@@ -237,18 +320,52 @@ make test
|
|
|
237
320
|
make lint
|
|
238
321
|
```
|
|
239
322
|
|
|
240
|
-
### **
|
|
323
|
+
### **6.3 개발 모드 실행**
|
|
324
|
+
|
|
241
325
|
개발 중 빠른 테스트를 위해:
|
|
326
|
+
|
|
242
327
|
```bash
|
|
243
328
|
make run
|
|
244
329
|
```
|
|
245
330
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
331
|
+
---
|
|
332
|
+
|
|
333
|
+
## **7. 프로젝트 구조**
|
|
334
|
+
|
|
335
|
+
```
|
|
336
|
+
reve-cli/
|
|
337
|
+
├── cmd/ # 명령어 정의
|
|
338
|
+
│ ├── root.go # 루트 명령어
|
|
339
|
+
│ ├── start.go # 완전한 설정 시작 명령어
|
|
340
|
+
│ ├── login.go # 로그인 명령어
|
|
341
|
+
│ ├── project.go # 프로젝트 선택 명령어
|
|
342
|
+
│ ├── env.go # 환경 관리 명령어
|
|
343
|
+
│ ├── github.go # GitHub 관련 명령어
|
|
344
|
+
│ ├── env/ # 환경 관리 서브 명령어
|
|
345
|
+
│ │ ├── start.go # 환경 관리 시작
|
|
346
|
+
│ │ ├── info.go # 프로젝트 정보 확인
|
|
347
|
+
│ │ ├── list.go # 환경 목록
|
|
348
|
+
│ │ ├── link.go # 브랜치 연결
|
|
349
|
+
│ │ ├── sync.go # 동기화
|
|
350
|
+
│ │ ├── deploy.go # 배포
|
|
351
|
+
│ │ └── common.go # 공통 함수
|
|
352
|
+
│ └── github/ # GitHub 서브 명령어
|
|
353
|
+
│ ├── login.go # GitHub 로그인
|
|
354
|
+
│ └── install.go # GitHub App 설치
|
|
355
|
+
├── internal/ # 내부 패키지
|
|
356
|
+
│ ├── config/ # 설정 관리
|
|
357
|
+
│ ├── constants/ # 상수 정의
|
|
358
|
+
│ ├── git/ # Git 관련 기능
|
|
359
|
+
│ ├── github/ # GitHub API
|
|
360
|
+
│ ├── logger/ # 로깅
|
|
361
|
+
│ └── reve/ # Reve API 및 유틸리티
|
|
362
|
+
├── main.go # 메인 진입점
|
|
363
|
+
├── go.mod # Go 모듈 정의
|
|
364
|
+
└── README.md # 이 파일
|
|
250
365
|
```
|
|
251
366
|
|
|
252
367
|
---
|
|
253
368
|
|
|
254
|
-
### **🛠 이제 SkyReve
|
|
369
|
+
### **🛠 이제 SkyReve command line tool: `reve`를 사용할 준비가 완료되었습니다! 🚀**
|
|
370
|
+
|
|
371
|
+
더 자세한 정보나 도움이 필요하시면 [GitHub Issues](https://github.com/SkyReve/reve-cli/issues)에서 문의해 주세요.
|
package/README.npm.md
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyreve/reve",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Reve
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Reve - A command line tool for Reve platform",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"reve": "node scripts/reve.js",
|
package/bin/debug/darwin/reve
DELETED
|
Binary file
|
package/bin/debug/linux/reve
DELETED
|
Binary file
|
package/bin/release/darwin/reve
DELETED
|
Binary file
|
package/bin/release/linux/reve
DELETED
|
Binary file
|
|
Binary file
|
package/bin/revecli-dev
DELETED
|
Binary file
|
package/bin/revecli-dev-linux
DELETED
|
Binary file
|
package/bin/revecli-dev-mac
DELETED
|
Binary file
|
package/bin/revecli-dev.exe
DELETED
|
Binary file
|
package/bin/revecli-prod
DELETED
|
Binary file
|
package/bin/revecli-prod-linux
DELETED
|
Binary file
|
package/bin/revecli-prod-mac
DELETED
|
Binary file
|
package/bin/revecli-prod.exe
DELETED
|
Binary file
|
package/bin/revecli-stag-linux
DELETED
|
Binary file
|
package/bin/revecli-stag-mac
DELETED
|
Binary file
|
package/bin/revecli-stag.exe
DELETED
|
Binary file
|
|
Binary file
|