add a minimalistic example app for modern js-based apps Signed-off-by: Andreas Bräu <ab@andi95.de>
8 lines
116 B
Bash
8 lines
116 B
Bash
#!/bin/sh
|
|
|
|
touch /etc/config/example
|
|
uci set example.first=first
|
|
uci set example.second=second
|
|
uci commit
|
|
|
|
return 0
|