Skip to content

Commit

Permalink
[Add] Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nespjin committed Aug 21, 2022
1 parent ea480bc commit 982b353
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,44 @@ description: VuePress Testing
---

# Hello Nesp Open Documents


## Steps
```shell
git init
```

```shell
npm init
```

```shell
npm install -D vuepress@next
```

Add some scripts on ``` package.json ```

```JSON
{
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
}
}
```

```shell
echo 'node_modules' >> .gitignore
echo '.temp' >> .gitignore
echo '.cache' >> .gitignore
```


```shell
mkdir docs
echo '# Hello VuePress' > docs/README.md
```

```shell
npm run docs:dev
```

0 comments on commit 982b353

Please sign in to comment.