-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
39 lines (39 loc) · 1.16 KB
/
config.json
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
{
"version": "1.0.2",
"baseDirectory": "./content",
"outputDirectory": "./docs/api",
"stores": {
"processed": "./docs/api/processed.json",
"index": "./docs/api/index.json",
"openapi": "./docs/api/openapi.json",
"collections": "./docs/api/collections.json"
},
"transformers": {
".md": "./transformers/markdown.js",
".jpeg": "./transformers/image.js",
".jpg": "./transformers/image.js",
".png": "./transformers/image.js",
".gif": "./transformers/image.js"
},
"media": {
"maxSize": 1920
},
"spec": {
"openapi": "3.0.1",
"info": {
"title": "COPE Static API",
"description": "A Create Once, Publish Everywhere Static API.\n\nContent is written in Markdown and served as JSON, along with optimized media and a comprehensive index.\n\nMinimizes vendor lock-in, dependencies, and hosting requirements. Apt for hosting on GitHub or GitLab Pages, or any static service.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://olevik.github.io/cope-static-api/api"
}
]
},
"logplease": {
"showLevel": true,
"filename": "operations.log",
"appendFile": true
}
}