Skip to content

Commit

Permalink
Make the config paths independent of the current directory
Browse files Browse the repository at this point in the history
This change depends on commit 27fafd1 in qtapplicationmanager.

Change-Id: Id1714a19d77bff0385531d46d03ab0c6c1071834
Reviewed-by: Dominik Holland <[email protected]>
  • Loading branch information
Robert Griebl authored and Gagi2k committed Feb 21, 2017
1 parent d83e051 commit 3ecfb83
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions am-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ formatType: am-configuration
# basic AM functionality - the builtin apps are in 'apps'.

applications:
builtinAppsManifestDir: "apps"
builtinAppsManifestDir: "${CONFIG_PWD}/apps"

# QML apps will be able to import from modules...

runtimes:
qml:
importPaths: [ "imports/shared" ]
importPaths: [ "${CONFIG_PWD}/imports/shared" ]

# ... as well as the SystemUI

ui:
fullscreen: yes
mainQml: "Main.qml"
importPaths: [ "imports/shared", "imports/system" ]
mainQml: "${CONFIG_PWD}/Main.qml"
importPaths: [ "${CONFIG_PWD}/imports/shared", "${CONFIG_PWD}/imports/system" ]
additionalConfiguration:
appStoreServerUrl: 'http://chaos.pelagicore.net:8080'
styleConfig: "auto"
showCluster: yes
windowIcon: "imports/shared/assets/icons/active/[email protected]"
windowIcon: "${CONFIG_PWD}/imports/shared/assets/icons/active/[email protected]"

# development setup: no security

Expand Down

0 comments on commit 3ecfb83

Please sign in to comment.