env.sh 847 B

1234567891011121314151617181920212223242526272829
  1. #!/bin/bash
  2. # Portainer Templates
  3. appsfolder="${homedir}template/apps"
  4. pt32="${homedir}template/portainer-v2-arm32.json"
  5. pt64="${homedir}template/portainer-v2-arm64.json"
  6. # README Files with templates
  7. README="${homedir}docs/README.md"
  8. README_TEMPLATE="${homedir}build/templates/template_README.md"
  9. TOOLSREADME="${homedir}tools/README.md"
  10. TOOLSREADME_TEMPLATE="${homedir}build/templates/template_tools_README.md"
  11. # Lists Documents
  12. AppList="${homedir}docs/AppList.md"
  13. AppList_TEMPLATE="${homedir}build/templates/template_AppList.md"
  14. DocList="${homedir}docs/DocumentList.md"
  15. DocList_TEMPLATE="${homedir}build/templates/template_DocumentList.md"
  16. # appinfo file
  17. appinfo="${homedir}build/info.json"
  18. # Internal folders
  19. Scripts="../tools/"
  20. Extras="../tools/"
  21. Docs="../docs/"
  22. # Verification file
  23. verificationFile="${homedir}build/tmp/lastrun.sha256"