Skip to content

Commit e56dbee

Browse files
Merge pull request #54 from prose-im/master
Populate
2 parents 5095843 + 9b3cca0 commit e56dbee

47 files changed

Lines changed: 903 additions & 53 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,5 @@ jobs:
123123
NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }}
124124
NOMAD_HTTP_AUTH: ${{ secrets.NOMAD_HTTP_AUTH }}
125125
run: |
126-
nomad var put -force nomad/jobs/prose-docs IMAGE_TAG=${{ needs.build.outputs.revision }}
126+
nomad var get nomad/jobs/prose-docs | \
127+
nomad var put -out none - IMAGE_TAG=${{ needs.build.outputs.revision }}

config/common.json

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353

5454
"categories" : {
5555
"references" : {
56-
"pod-api" : "images/categories/references/pod-api.svg"
56+
"pod-api" : "images/categories/references/pod-api.svg",
57+
"pod-config" : "images/categories/references/pod-config.svg"
5758
}
5859
}
5960
},
@@ -105,8 +106,12 @@
105106

106107
"dropdown" : [
107108
{
108-
"route" : ["pod-api", "v1"],
109+
"route" : ["pod-api"],
109110
"label" : "Pod API Reference"
111+
},
112+
{
113+
"route" : ["pod-config"],
114+
"label" : "Pod Configuration Reference"
110115
}
111116
]
112117
}
@@ -174,7 +179,7 @@
174179

175180
"actions" : [
176181
{
177-
"route" : ["guides", "start"],
182+
"route" : ["guides", "basics", "quickstart"],
178183
"label" : "Start with Prose"
179184
}
180185
]
@@ -185,7 +190,7 @@
185190

186191
"actions" : [
187192
{
188-
"route" : ["guides", "server"],
193+
"route" : ["guides", "operating"],
189194
"label" : "Server Setup"
190195
},
191196

@@ -201,8 +206,12 @@
201206

202207
"actions" : [
203208
{
204-
"route" : ["references", "pod-api", "v1"],
209+
"route" : ["references", "pod-api"],
205210
"label" : "Pod API"
211+
},
212+
{
213+
"route" : ["references", "pod-config"],
214+
"label" : "Pod Config"
206215
}
207216
]
208217
}
@@ -229,9 +238,12 @@
229238
"plugins" : {
230239
"code" : {
231240
"syntaxes" : [
232-
"clike",
233-
"c",
234-
"bash"
241+
"bash",
242+
"yaml",
243+
"json",
244+
"toml",
245+
"nginx",
246+
"ini"
235247
]
236248
}
237249
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"url": "https://prose.org/"
2121
},
2222
"scripts": {
23-
"build": "./tools/build.sh"
23+
"build": "./tools/build.sh",
24+
"dev": "./tools/dev.sh"
2425
},
2526
"devDependencies": {
2627
"chappe": "1.9.8"
Lines changed: 1 addition & 0 deletions
Loading
467 KB
Loading
446 KB
Loading
906 KB
Loading
850 KB
Loading
1.15 MB
Loading
612 KB
Loading

0 commit comments

Comments
 (0)