Skip to content

Commit 9f73545

Browse files
Improve app docs
1 parent a26ddca commit 9f73545

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/apps/bundling-apps.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ For example:
1111

1212
```
1313
cd com.micropythonos.helloworld/
14-
find . -type f -exec touch -t 202501010000.00 {} \; # set fixed timestamp
14+
find . -type f -exec touch -t 202501010000.00 {} \; # set fixed timestamp to have a deterministic zip file
1515
find . -type f | sort | TZ=CET zip -X -r -0 /tmp/com.micropythonos.helloworld_0.0.2.mpk -@ # sort, -Xclude extra attributes, -recurse into directories and -0 compression
1616
```
1717

18-
Take a look at [`scripts/bundleapps.sh`](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/scripts/bundleapps.sh) to see how the MicroPythonOS default apps are bundled.
18+
## AppStore bundling
19+
20+
The apps at https://apps.MicroPythonOS.com are a curated, manually reviewed, vetted collection, often created and maintainced by the MicroPythonOS core team.
21+
22+
These are manually bundled into a [app_index.json](https://github.com/MicroPythonOS/apps/blob/main/app_index.json) using [`scripts/bundleapps.sh`](https://github.com/MicroPythonOS/MicroPythonOS/blob/main/scripts/bundleapps.sh) and then pushed to the [apps repo](https://github.com/MicroPythonOS/apps).

0 commit comments

Comments
 (0)