* Rename generateList to generateAppList * Add DocumenList with Generator * Rename Template files * Use template file for AppList.md * Ignore case when sorting AppList * Organize build folder * Add dependencies check to pre-commit script * Add wget install collumn to tools/README.md and sort by title * Remove Document table from README and add a link to DocumentList.md * Remove tools table from README and add a link to the list * Hightlight AppList on Readme
29 lines
813 B
Bash
Executable File
29 lines
813 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Portainer Templates
|
|
pt32="${homedir}template/portainer-v2-arm32.json"
|
|
pt64="${homedir}template/portainer-v2-arm64.json"
|
|
|
|
# README Files with templates
|
|
README="${homedir}docs/README.md"
|
|
README_TEMPLATE="${homedir}build/templates/template_README.md"
|
|
TOOLSREADME="${homedir}tools/README.md"
|
|
TOOLSREADME_TEMPLATE="${homedir}build/templates/template_tools_README.md"
|
|
|
|
# Lists Documents
|
|
AppList="${homedir}docs/AppList.md"
|
|
AppList_TEMPLATE="${homedir}build/templates/template_AppList.md"
|
|
DocList="${homedir}docs/DocumentList.md"
|
|
DocList_TEMPLATE="${homedir}build/templates/template_DocumentList.md"
|
|
|
|
# appinfo file
|
|
appinfo="${homedir}build/appinfo.json"
|
|
|
|
# Internal folders
|
|
Scripts="../tools/"
|
|
Extras="../tools/"
|
|
Docs="../docs/"
|
|
|
|
# Verification file
|
|
verificationFile="${homedir}build/tmp/lastrun.sha256"
|