Skip to content

Commit 47d4879

Browse files
add
1 parent 030563f commit 47d4879

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

docs/apps/bundling-apps.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Bundling Apps
2+
3+
To bundle your app in an .mpk file, just make an uncompressed .zip file of it, without including the top-level `com.micropythonos.helloworld/` folder.
4+
5+
For example:
6+
7+
```
8+
cd com.micropythonos.helloworld/
9+
zip -r0 /tmp/com.micropythonos.helloworld_0.0.2.mpk .
10+
```
11+

docs/apps/developing-apps.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,4 @@ You can also launch it manually by typing this in the MicroPython REPL:
124124
import mpos.apps; mpos.apps.start_app('apps/com.micropythonos.helloworld/')
125125
```
126126

127-
## Bundling your App
128-
129-
To bundle your app in an .mpk file, just make an uncompressed .zip file of it, without including the top-level `com.micropythonos.helloworld/` folder.
130-
131-
For example:
132-
133-
```
134-
cd com.micropythonos.helloworld/
135-
zip -r0 /tmp/com.micropythonos.helloworld_0.0.2.mpk .
136-
```
137127

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ nav:
4141
- Overview: apps/index.md
4242
- Built-in Apps: apps/built-in-apps.md
4343
- App Store: apps/appstore.md
44-
- Developing Apps: apps/developing-apps.md
44+
- Developing : apps/developing-apps.md
45+
- Bundling Apps: apps/bundling-apps.md
4546
- Architecture:
4647
- Overview: architecture/overview.md
4748
- System Components: architecture/system-components.md

0 commit comments

Comments
 (0)