Skip to content

Commit

Permalink
docs: fix docs for npm deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Raj Nandan Sharma authored and Raj Nandan Sharma committed Dec 5, 2024
1 parent 67e22e4 commit 27625bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publishImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
tags:
- "*.*.*"
paths-ignore:
- docs.md
- README.md
- '**/*.md'
- 'docs/**'
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
Expand Down
5 changes: 3 additions & 2 deletions docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Make sure you have the following installed:

```shell
npm i
npm run build #build the frontend
npm run configure #build the backend
npm run build
npm run configure
npm run prod
```

Expand Down Expand Up @@ -60,6 +60,7 @@ mkdir database
mkdir config
curl -o config/site.yaml https://raw.githubusercontent.com/rajnandan1/kener/refs/heads/main/config/site.example.yaml
curl -o config/monitors.yaml https://raw.githubusercontent.com/rajnandan1/kener/refs/heads/main/config/monitors.example.yaml
curl -o config/server.yaml https://raw.githubusercontent.com/rajnandan1/kener/refs/heads/main/config/server.example.yaml
docker run \
-v $(pwd)/database:/app/database \
-v $(pwd)/config:/app/config \
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/monitor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
loadingDayData = true;
setTimeout(() => {
getToday(bar.timestamp);
}, 1000);
}, 750);
}
</script>

Expand Down

0 comments on commit 27625bc

Please sign in to comment.