-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhexaturion.readme
60 lines (41 loc) · 1.08 KB
/
hexaturion.readme
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
start de server op de raspberrypi met:
>ssh -X raspberrypi
>cd $lebcube
>sudo node server.js
of tijdens development:
(installeer eerst nodemon: >sudo npm install -g nodemon)
>sudo nodemon server.js
server wordt dan automatisch opnieuw gestart bij
iedere wijziging in de code
Hexaturion Cube Commander listening on port 3000
-------------------------
start client in webbrowser:
http://hexaturion.com
------------------------------------
debugging:
start client in webbrowser:
http://hexaturion.com
rechtermuisknop -> Inspect -> Console
------------------------------------
Voor lokaal testen van hexaturion op localhost:
ga naar:
>/home/ik/hexaturion/
en dan:
>npm run dev
dit geeft de melding:
Listening on http://localhost:3000/
start localhost in webbrowser:
localhost:3000
dit geeft de Hexaturion GUI
------------------------------------
Dependencies opnieuw laden:
remove of hernoem:
package-lock.json
en
node_modules
en dan:
>npm install
------------------------------------
install and update to the versions in package-lock.json:
>npm ci
------------------------------------