Skip to main content

Where is .platform.app.yaml?

Comments

1 comment

  • Chad Carlson

    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'
    
    0

Please sign in to leave a comment.