-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_cms.ts
109 lines (102 loc) · 2.53 KB
/
_cms.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import lumeCMS from "lume/cms/mod.ts";
import GitHub from "lume/cms/storage/github.ts";
import { Octokit } from "npm:octokit";
const username = Deno.env.get("USERNAME1")!;
const password = Deno.env.get("PASSWORD1")!;
const cms = lumeCMS({
site: {
name: "Rick Cogley Current Events CMS",
description: "Edit the content of the Rick Cogley Current Events site.",
url: "https://rick.cogley.jp",
body: `
<p>This is the CMS for an English-language portfolio site, with just a single landing page. </p>
`,
},
auth: {
method: "basic",
users: {
// foo: "bar",
[username]: password,
},
},
});
// Register GitHub storage
cms.storage(
"gh",
new GitHub({
client: new Octokit({ auth: Deno.env.get("GITHUB_TOKEN") }),
owner: "rickcogley",
repo: "rick.cogley.jp",
branch: "main",
path: "src",
}),
);
// Configure an upload folder
cms.upload("assets", "gh:assets");
cms.document({
name: "Top Page",
description: "Edit the content of the home page",
store: "gh:index.yml",
fields: [
"title: text",
{
name: "metas",
type: "object",
fields: [
{
name: "title",
type: "text",
label: "Title of the Page",
description: "Visible in browser tab and page source head section",
attributes: {
required: true,
},
},
{
name: "description",
type: "textarea",
label: "Description for the Page",
description: "Visible in search engine results",
attributes: {
required: true,
},
},
{
name: "image",
type: "file",
description: "Image to link in head metadata.",
attributes: {
accept: "image/*",
required: false,
},
},
],
},
{
name: "priority",
type: "number",
label: "Priority for sitemap",
description:
"1 is highest priority, 0 is lowest priority, and you can set decimal numbers in between like 0.9.",
attributes: {
required: false,
min: 0,
max: 1,
step: 0.1,
},
},
"bio: markdown",
"nowprofessionally: markdown",
"nowpersonally: markdown",
],
});
cms.document({
name: "ld-person",
description:
"Edit the content of the ld-person script for the person, which will appear in the head of the about page",
store: "gh:_includes/templates/ld-person.vto",
fields: [
"content: markdown",
],
});
export default cms;