@noforeignland/signalk-to-noforeignland 1.0.1-beta.5 → 1.1.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,60 +0,0 @@
1
- How-to install the latest beta on your device?
2
-
3
- This guide assumes you have a default install with default folders.
4
- This is written for a Cerbo GX or a RPI, jump to the section you need want to go to.
5
- It is recommended to enable the Debug Log for this plugin in Server -> Plugin Config before updating.
6
-
7
- **For Raspberry PI:**
8
-
9
- 1. Backup old data
10
-
11
- ```
12
- cd ~
13
- mkdir nfl-backup
14
- cp -a .signalk/node_modules/signalk-to-noforeignland/* nfl-backup/
15
- ```
16
-
17
- 2. Get new files from repo (main for latest)
18
-
19
- ```
20
- cd ~/.signalk/node_modules/signalk-to-noforeignland/
21
- rm -rf *
22
- wget https://github.com/noforeignland/nfl-signalk/archive/refs/heads/main.zip
23
- unzip main.zip
24
- cp -r nfl-signalk-main/* .
25
- rm main.zip
26
- rm -rf nfl-signalk-main/
27
- ```
28
-
29
- 3. Restart Server & Check logs
30
-
31
- ```
32
- sudo systemctl restart signalk.service && sudo journalctl -u signalk.service -f
33
- ```
34
-
35
-
36
- **For Cerbo GX with Image Large:**
37
- 1. Backup old data
38
-
39
- ```
40
- cd ~
41
- mkdir nfl-backup
42
- cp -a /data/conf/signalk/node_modules/signalk-to-noforeignland/* nfl-backup
43
- ```
44
-
45
- 2. Get new files from repo (main for latest)
46
-
47
- ```
48
- cd /data/conf/signalk/node_modules/signalk-to-noforeignland/
49
- rm -rf *
50
- wget https://github.com/noforeignland/nfl-signalk/archive/refs/heads/main.zip
51
- unzip main.zip
52
- cp -r nfl-signalk-main/* .
53
- rm main.zip
54
- rm -rf nfl-signalk-main/
55
- ```
56
-
57
- 3. Restart Server & Check logs
58
- ```
59
- Restart Server vom Webgui and check logs in Webgui
60
- ```
package/doc/dev DELETED
@@ -1,13 +0,0 @@
1
- cd ~/dirk/nfl-signalk
2
-
3
- # Aktuelle Version zu Beta machen
4
- npm version 1.0.1-beta.1 --no-git-tag-version
5
-
6
- # Package bauen
7
- npm pack
8
-
9
- # Mit beta tag publishen (nicht als 'latest')
10
- npm publish --tag beta
11
-
12
- # Falls du noch nicht eingeloggt bist:
13
- npm login