Open nellshamrell opened 6 years ago
echo "- [ ] [${dir##*/}](http://github.com/core-plans/${dir##*/}"
I think this should be
echo "- [ ] [${dir##*/}](https://github.com/habitat-sh/core-plans/tree/master/${dir##*/})"
(...~but I haven't tried it, sorry 😄~ tried this locally, seems not too wrong)
Links in the checklist have been fixed!
I updated the list of packages, splitting services apart from libraries / binaries, the latter of which we may be able to automate README
generation for. I also updated the script used to generate this list in the issue message.
For posterity, the original list and script are as follows:
for dir in ~/Projects/core-plans/*/
do
dir=${dir%*/}
if ls ${dir}/README.md &>/dev/null
then
continue
else
echo "- [ ] [${dir##*/}](http://github.com/habitat-sh/core-plans/tree/master/${dir##*/})"
fi
done
As soon as https://github.com/habitat-sh/core-plans/pull/1305 merges, I'll update the list above.
Updated OP's list of packages today: 2018-04-19
BTW some of them has README in a docs directory (like etcd)
Check out the core plans README template to get started!
Here is the current list of core plans that are missing READMEs:
Services without READMEs
Libraries / Binaries without READMEs
We need READMEs added for each one of them (the README should include the information specified in CONTRIBUTING.md
For reference, here is the bash script I used to generate this list (I will periodically refresh it)