File tree 3 files changed +22
-150
lines changed
3 files changed +22
-150
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ should read:
39
39
1 . [ Getting started with Cortex] ( https://cortexmetrics.io/docs/getting-started/ )
40
40
1 . [ Information regarding configuring Cortex] ( https://cortexmetrics.io/docs/configuration/ )
41
41
42
+ There are also individual [ guides] ( https://cortexmetrics.io/docs/guides/ ) to many tasks.
43
+ Please review the important [ security advice] ( https://cortexmetrics.io/docs/guides/security/ ) before deploying.
44
+
42
45
For a guide to contributing to Cortex, see the [ contributor guidelines] ( https://cortexmetrics.io/docs/contributing/ ) .
43
46
44
47
## Further reading
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ cp -r code-of-conduct.md CHANGELOG.md ${OUTPUT_CONTENT_DIR}
18
18
cp GOVERNANCE.md ${OUTPUT_CONTENT_DIR} /contributing/governance.md
19
19
cp images/* ${WEBSITE_DIR} /static/images
20
20
21
- # Add headers to special CODE_OF_CONDUCT.md and CHANGELOG .md files.
21
+ # Add headers to special CODE_OF_CONDUCT.md, CHANGELOG.md and README .md files.
22
22
echo " $( cat << EOT
23
23
---
24
24
title: Code of Conduct
52
52
) " > ${OUTPUT_CONTENT_DIR} /contributing/governance.md
53
53
tail -n +2 GOVERNANCE.md >> ${OUTPUT_CONTENT_DIR} /contributing/governance.md
54
54
55
+ echo " $( cat << EOT
56
+ ---
57
+ title: "Documentation"
58
+ linkTitle: "Documentation"
59
+ weight: 1
60
+ menu:
61
+ main:
62
+ weight: 1
63
+ ---
64
+ EOT
65
+ ) " > ${OUTPUT_CONTENT_DIR} /_index.md
66
+
67
+ # Ignore the header and some of the badges.
68
+ head -6 README.md | tail +2 >> ${OUTPUT_CONTENT_DIR} /_index.md
69
+
70
+ # Ignore another header and write the rest of the file.
71
+ tail +12 README.md >> ${OUTPUT_CONTENT_DIR} /_index.md
72
+
55
73
ALL_DOC_CONTENT_FILES=` echo " ${OUTPUT_CONTENT_DIR} /**/*.md ${OUTPUT_CONTENT_DIR} /*.md" `
56
74
for file in $( find ${OUTPUT_CONTENT_DIR} -name ' *.md' )
57
75
do
You can’t perform that action at this time.
0 commit comments