@@ -465,14 +465,20 @@ ZKP_STORAGE='0x897264b7d872e07a3d8e1d22b199f12cfb4bb26d'
465
465
NODE_SERVICE_DEVICE_MANAGEMENT='0x4b08ea934e6bfb7c72a376c842c911e1dd2aa74f'
466
466
```
467
467
468
- - Note: Please change only the the necessary values in the 'env' file, and do not add any extra space before or after '='. For exmaple,
468
+ - Please update only the necessary values in the ` .env ` file, and make sure ** not to add any extra spaces** before or after the ` = ` sign. For example:
469
+ ``` ini
470
+ THEME_BOX =' 0xabcd' ✔️ Correct
471
+ THEME_BOX =' 0xabcd' ❌ Incorrect
472
+ THEME_BOX = ' 0xabcd' ❌ Incorrect
473
+ THEME_BOX = ' 0xabcd' ❌ Incorrect
469
474
```
470
- THEME_BOX='0xabcd' <--- correct
471
- THEME_BOX ='0xabcd' <--- wrong
472
- THEME_BOX= '0xabcd ' <--- wrong
473
- THEME_BOX = '0xabcd' <--- wrong
475
+ - Additionally, ensure that ** no comments ** are placed on the same line as any parameter.
476
+ ``` ini
477
+ API_KEY = ' 123456 ' ✔️ Correct
478
+ API_KEY = ' 123456 ' # key ❌ Incorrect
474
479
```
475
480
481
+
476
482
### 🔔 Enable Node Mobile Notifications
477
483
478
484
To enable mobile notifications on your Node server, follow these steps:
@@ -652,7 +658,12 @@ To automate the setup and build processes for both the backend and frontend appl
652
658
653
659
# E. Maintenance
654
660
## E.1. Update IoT Server
655
- - Every time Fidesinnova core development team push a new version of the code on GitHub.
661
+ - Every time the Fides Innova core development team pushes a new version of the code on GitHub.
662
+ - ** Note:** Make sure to check the name of the repository, and if needed, update the folder name using the following command:
663
+ ```
664
+ mv IoT-Server Blockchain-based-IoT-Server
665
+ ```
666
+ Use the following commands to pull and update your local repository from GitHub:
656
667
```
657
668
cd /home/Blockchain-based-IoT-Server/
658
669
sudo git fetch
0 commit comments