You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ARDUINO_APP_CLI__APPS_DIR`|`/home/arduino/ArduinoApps`| Path to the directory where Arduino Apps created by the user are stored |
10
-
|`ARDUINO_APP_CLI__DATA_DIR`|`/home/arduino/.local/share/arduino-app-cli`| Path to the directory where internal data is stored (examples, assets, properties) |
10
+
|`ARDUINO_APP_CLI__DATA_DIR`|`/usr/share/arduino-app-cli`| Path to the directory where internal data is stored (examples, assets) |
11
11
|`ARDUINO_APP_BRICKS__CUSTOM_MODEL_DIR`|`$HOME/.arduino-bricks/ei-models`| Path to the directory where custom AI models are stored |
12
12
|`ARDUINO_APP_CLI__ALLOW_ROOT`|`false`| Allow running `arduino-app-cli` as root (**Not recommended to set to true**) |
13
13
|`LIBRARIES_API_URL`|`https://api2.arduino.cc/libraries/v1/libraries`| URL of the external service used to search Arduino libraries |
@@ -33,19 +33,14 @@ Examples of user-defined Arduino Apps stored under the `ARDUINO_APP_CLI__APPS_DI
33
33
├── python
34
34
└── main.py
35
35
```
36
-
37
-
Examples of the `assets` and the builtin `examples` stored under the `ARDUINO_APP_CLI__DATA_DIR` folder.
38
-
36
+
Examples of the `assets` and the builtin `examples` are stored under the `ARDUINO_APP_CLI__DATA_DIR` folder.
39
37
```
40
-
/home/arduino/.local/share/arduino-app-cli/
38
+
/usr/share/arduino-app-cli/
41
39
├── assets
42
40
│ └── 0.5.0 # Version-specific assets
43
41
│ ├── bricks-list.yaml # Available bricks
44
42
│ ├── models-list.yaml # Available models
45
43
│ └── ...
46
-
├── bootloader_burned.flag
47
-
├── default.app # Default App
48
-
├── properties.msgpack # Variable values
49
44
├── examples # Built-in App examples
50
45
│ ├── air-quality-monitoring
51
46
│ │ ├── app.yaml
@@ -60,3 +55,6 @@ Examples of the `assets` and the builtin `examples` stored under the `ARDUINO_AP
60
55
│ │ └── README.md
61
56
│ └── ...
62
57
```
58
+
59
+
Package configurations are located in ```/home/arduino/.arduino-app-cli```
60
+
Runtime data are other files are in ```/var/lib/arduino-app-cli```
0 commit comments