Skip to content

Commit 5e37804

Browse files
committed
Simplify dev command, fix typos, cleanup
1 parent 781b326 commit 5e37804

File tree

6 files changed

+30
-9
lines changed

6 files changed

+30
-9
lines changed

.codespellrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[codespell]
2-
skip = package-lock.json,*.svg,public/swagger/*
2+
skip = package-lock.json,*.svg,*.png,public/swagger/*,node_modules
33
ignore-words-list = nin,uintn

README.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
Code powering https://docs.lightbug.io making use of vitepress
44

5+
## Development
6+
7+
Install dependencies
8+
9+
```bash
10+
npm install
11+
```
12+
13+
Run the development server
14+
15+
```bash
16+
npm run dev
17+
```
18+
19+
Or build and serve the static site
20+
21+
```bash
22+
npm run build
23+
npm run preview
24+
```
25+
526
## Deployments
627

728
Merges to the `main` branch will auto deploy onto https://docs-next.lightbug.io

apps/cloud/map/controls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Devices are always shown on the map, but you can choose how they are displayed,
5757
| Clustered | Not Clustered |
5858
| --------------------------------------------- | ------------------------------------------------- |
5959
| ![Clustered](https://i.imgur.com/N7tKJIC.png) | ![Not Clustered](https://i.imgur.com/oo3aNqQ.png) |
60-
| Clusters show the number of devices within an area | Each device is shown indvidually on the map, [optionally with the name](/apps/cloud/account/preferences) |
60+
| Clusters show the number of devices within an area | Each device is shown individually on the map, [optionally with the name](/apps/cloud/account/preferences) |
6161

6262
Clicking on a cluster will zoom in to show the individual devices, or smaller clusters.
6363

onprem/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Typically, we will always recommend you allow us to manage this cloud resource b
1010

1111
Silos are our on premise offering, that enables enterprise users to run one or more components that make up our IoT platform within their own cloud or on their own hardware.
1212

13-
Generally speaking, this is normallly the [Data Ingress](/onprem/#ingress) or [RTK](/onprem/#rtk) services, but sometimes includes custom components. User interfaces are generally not included within the On Premise offering at this time.
13+
Generally speaking, this is normally the [Data Ingress](/onprem/#ingress) or [RTK](/onprem/#rtk) services, but sometimes includes custom components. User interfaces are generally not included within the On Premise offering at this time.
1414

1515
## Example
1616

@@ -28,7 +28,7 @@ Current pricing can be found on [our main website](https://lightbug.io/product/c
2828

2929
## Ingress
3030

31-
The ingress service handles all device communicaiton and data ingestion for basic devices.
31+
The ingress service handles all device communication and data ingestion for basic devices.
3232

3333
The diagram below shows the basic flow of data in this siloed situation.
3434

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"vitepress-plugin-tabs": "^0.5.0"
1616
},
1717
"scripts": {
18-
"docs:dev": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress dev",
19-
"docs:dev-public": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress dev --host",
20-
"docs:build": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress build",
21-
"docs:preview": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress preview",
18+
"dev": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress dev",
19+
"dev-public": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress dev --host",
20+
"build": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress build",
21+
"preview": "cross-env PUBLIC_GOOGLE_ANALYTICS=${PUBLIC_GOOGLE_ANALYTICS} vitepress preview",
2222
"test": "jest"
2323
},
2424
"dependencies": {

public/swagger/v2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
"type": "integer"
221221
},
222222
"movementSensitivityOld": {
223-
"description": "Deprecated. See debounce.\nmovementSensitivity threshold in terms of units of gravity. We used to adjust it, but a better way of doing it was the ammount of times over that threshold (that what debounce is)\nShould always be 1, which means... debounce when already moving",
223+
"description": "Deprecated. See debounce.\nmovementSensitivity threshold in terms of units of gravity. We used to adjust it, but a better way of doing it was the amount of times over that threshold (that what debounce is)\nShould always be 1, which means... debounce when already moving",
224224
"type": "integer"
225225
},
226226
"otaFW": {

0 commit comments

Comments
 (0)