Skip to content

Commit 05c35e6

Browse files
committed
smartui-cli implementation kick off
0 parents  commit 05c35e6

26 files changed

+2749
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.DS_Store

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# smartui-cli
2+
3+
### Configure your Project Token
4+
5+
Setup your project token show in the **SmartUI** app after, creating your project.
6+
7+
<b>For Linux/macOS:</b>
8+
9+
```
10+
export PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
11+
```
12+
13+
<b>For Windows:</b>
14+
15+
```
16+
set PROJECT_TOKEN="123456#1234abcd-****-****-****-************"
17+
```
18+
19+
20+
21+
### To capture screenshot
22+
```
23+
npm run capture
24+
```
25+
26+
### To capture screenshot with default configs
27+
```
28+
npm run capture-with-deafult-config
29+
```

package-lock.json

Lines changed: 343 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/core/package.json

0 commit comments

Comments
 (0)