aboutsummaryrefslogtreecommitdiffstats
path: root/am-config.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'am-config.yaml')
-rw-r--r--am-config.yaml47
1 files changed, 47 insertions, 0 deletions
diff --git a/am-config.yaml b/am-config.yaml
new file mode 100644
index 00000000..96db27cd
--- /dev/null
+++ b/am-config.yaml
@@ -0,0 +1,47 @@
+formatVersion: 1
+formatType: am-configuration
+---
+# basic AM functionality - the builtin apps are in 'apps'.
+# installations will go into the standard /tmp/am hierarchy
+
+applications:
+ builtinAppsManifestDir: "${CONFIG_PWD}/apps"
+ installedAppsManifestDir: "/tmp/am/manifests"
+ appImageMountDir: "/tmp/am/image-mounts"
+ database: "/tmp/am/apps.db"
+
+# QML apps will be able to import from modules...
+
+runtimes:
+ qml:
+ importPaths: [ "${CONFIG_PWD}/imports/shared" ]
+
+# ... as well as the SystemUI
+
+ui:
+ fullscreen: no
+ style: "${CONFIG_PWD}/styles/triton"
+ mainQml: "${CONFIG_PWD}/Main.qml"
+ importPaths: [ "${CONFIG_PWD}/imports/shared", "${CONFIG_PWD}/imports/system", "${CONFIG_PWD}/sysui" ]
+ windowIcon: "${CONFIG_PWD}/imports/assets/icons/active/apps@96.png"
+
+systemProperties:
+ public:
+ showCluster: no
+ private:
+ appStoreServerUrl: 'http://chaos.pelagicore.net:8080'
+
+# development setup: no security
+
+flags:
+ noSecurity: yes
+ noUiWatchdog: yes
+
+# simulate an internal and a SD-card installation location
+
+installationLocations:
+- id: "internal-0"
+ installationPath: "/tmp/am/apps"
+ documentPath: "/tmp/am/docs"
+ mountPoint: "/tmp"
+ isDefault: true