Skip to content

Commit

Permalink
simplify Layer0 deployment guide (#1727)
Browse files Browse the repository at this point in the history
* Update layer0.md

* Update layer0.md
  • Loading branch information
Rishi Raj Jain authored Jan 10, 2022
1 parent 25ab1bc commit f4d312b
Showing 1 changed file with 8 additions and 14 deletions.
22 changes: 8 additions & 14 deletions docs/content/documentation/deployment/layer0.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,8 @@ npm i -g @layer0/cli
```

2. Create a package.json at the root of your project with the following:
```js
{
"name": "zola",
"version": "1.0.0",
"scripts": {
"build": "zola build",
"layer0:dev": "0 dev",
"layer0:buid": "0 build",
"layer0:deploy": "0 deploy"
},
"dependencies": {},
"devDependencies": {}
}
```bash
npm init
```

3. Initialize your project with:
Expand Down Expand Up @@ -55,7 +44,12 @@ export default new Router().static('public', ({ cache }) => {
})
```

5. Deploy with:
5. Build your zola app:
```bash
zola build
```

6. Deploy!
```bash
0 deploy
```

0 comments on commit f4d312b

Please sign in to comment.