aboutsummaryrefslogtreecommitdiffstats
path: root/am-config.yaml
blob: 357e5f0f894dd565a1e019966bedbe607d624863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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: yes
  mainQml: "${CONFIG_PWD}/Main.qml"
  importPaths: [ "${CONFIG_PWD}/imports/shared", "${CONFIG_PWD}/imports/system" ]
  windowIcon: "${CONFIG_PWD}/imports/shared/assets/icons/active/apps@96.png"

systemProperties:
    public:
      styleConfig: "Config1920x1080.qml"
      showCluster: yes
    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

# useful debug wrappers - mainly for Unix
# %program% and %arguments% are internal variables

debugWrappers:
- name: gdbserver
  command: [ '/usr/bin/gdbserver', ':%port%', '%program%', '%arguments%' ]
  parameters:  # <name>: <default value>
    port: 5555
  supportedRuntimes: [ native, qml ]
  supportedContainers: [ process ]
- name: valgrind
  command: [ '/usr/bin/valgrind', '%program%', '%arguments%' ]
  supportedRuntimes: [ native, qml ]
  supportedContainers: [ process ]
- name: strace
  command: [ '/usr/bin/strace', '%program%', '%arguments%' ]
  supportedRuntimes: [ native, qml ]
  supportedContainers: [ process ]