I've got an app that works great. In the app is a manifest.json file specifying that a token field is required via parameters. For local dev work I have a settings.yml file in my root directory:
/app_name
-- .zat
-- README.md
-- assets/
-- manifest.json
-- readme/
-- settings.yml
-- tmp/
-- translations/
One of my colleagues downloaded the .zip of this app and peeked inside and noticed the settings.yml file was there. Since this file contains a secret token I would really prefer it not get packaged up when running `zat package`.
Is there any sort of ".zatignore" where I can tell zat to not include that file in the app package? I couldn't find anything in the KB around preventing the settings file from being packaged up.
Thanks!
Hey RC,
Sorry for the delay in getting back to you!
I think the best way to approach this would be to make your settings.yml a hidden file (“.settings.yml”). This will ensure that the file is skipped over when the app is packaged using zat package.
I hope this helps. Feel free to reach out if you have any questions!
Tipene