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.
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 file
echo $PLATFORM_APPLICATION | base64 --decode | jq '.disk'