Where is .platform.app.yaml?
The information in this post is accurate as of the published date . Please make sure to check any linked documentation within the post for changes/updates.
Where is .platform.app.yaml? Crell with Platform.sh says it should be in a .plaform directory:
https://community.platform.sh/t/why-is-the-platform-app-yaml-file-separate-from-the-platform-folder/281/2
I’m using “ls -a” so I should see hidden directories and files, but I don’t see .platform or .platform.app.yaml anywhere.
0
-
Hi @linkletter. Those files will be visible locally only. You can however view the contents of that file through the
PLATFORM_APPLICATION
environment variable.echo $PLATFORM_APPLICATION | base64 --decode | jq
And you can use
jq
to retrieve individual values set in that fileecho $PLATFORM_APPLICATION | base64 --decode | jq '.disk'
0
Please sign in to leave a comment.
Comments
1 comment