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
110
111
112
113
114
115
| import { defineConfig } from "tinacms";
|
| // Your hosting provider likely exposes this as an environment variable
| const branch = process.env.HEAD || process.env.VERCEL_GIT_COMMIT_REF || "main";
|
| export default defineConfig({
| branch,
| clientId: "6ff9830b-b18a-4d21-b38c-cae1679e335f", // Get this from tina.io
| token: "2954980a0db18868974dc57a66be9ecdfe6f336b", // Get this from tina.io
|
| build: {
| outputFolder: "admin",
| publicFolder: "exampleSite/static",
| },
| media: {
| tina: {
| mediaRoot: "images",
| publicFolder: "exampleSite/static",
| },
| },
| schema: {
| collections: [
| {
| name: "docs",
| label: "Docs",
| path: "exampleSite/content/docs",
| fields: [
| {
| type: "string",
| name: "title",
| label: "Title",
| isTitle: true,
| required: true,
| },
| {
| type: "number",
| name: "weight",
| label: "Weight"
| },
| {
| type: "string",
| name: "description",
| label: "Description"
| },
| {
| type: "rich-text",
| name: "body",
| label: "Body",
| isBody: true,
| },
| ],
| },
| {
| name: "post",
| label: "Posts",
| path: "exampleSite/content/posts",
| fields: [
| {
| type: "string",
| name: "title",
| label: "Title",
| isTitle: true,
| required: true,
| },
| {
| type: "string",
| name: "author",
| label: "Author",
| },
| {
| type: "datetime",
| name: "date",
| label: "Date",
| },
| {
| type: "image",
| name: "image",
| label: "Image",
| },
| {
| type: "rich-text",
| name: "body",
| label: "Body",
| isBody: true,
| },
| ],
| },
| {
| name: "tutorials",
| label: "Tutorials",
| path: "exampleSite/content/tutorials",
| fields: [
| {
| type: "string",
| name: "title",
| label: "Title",
| isTitle: true,
| required: true,
| },
| {
| type: "number",
| name: "weight",
| label: "Weight",
| },
| {
| type: "rich-text",
| name: "body",
| label: "Body",
| isBody: true,
| },
| ],
| },
| ],
| },
| });
|
|