Transfer NR "App" to another RPI -- need Help, please

A somewhat extensive NR "App" with Tasmota devices and MQTT control is to be transferred from one RPI to another one.
The new/different RPI naturally has a different host name and a different IP address, but the Tasmota devices are of course set to the "original" values.
The NR “App” also includes nodes like Dashboard (not yet Vers.2), file handling, tasmota, mqtt, ui-table. These nodes should ideally also be transferred.

What is the easiest and safest way to transfer the entire project automatically?

First, on the original pi, make sure all nodes are fully up to date (using Manage Palette).

On the new pi, install node red if you have not already done so, then copy the whole .node-folder .node-red folder, except the node_modules folder, from the old pi to the new one. In a command window, cd into the .node-red folder and run
npm install
which will install any additional nodes required by your flows. Then restart node-red and all should be well.

[Edit] Corrected typo

Thanks dear friend :smile: Will try and report back

... but ... here comes the first difficulty:
This is my directory structure:

pi 
 .local
 node_modules
 .node-red
    images
    lib
    node_modules
 .npm

Which of them is that .node-folder ?

The the .node-red folder

pi 
 .local
 node_modules
 .node-red <--- This one
    images
    lib
    node_modules 
 .npm

Thanks, it's what I expected ... and asked only to be sure :slightly_smiling_face:

1 Like

Always a good idea :grinning:

1 Like

Sorry, that was a typo, it should have read .node-red folder. I have corrected it in the original post.