forked from tagspaces/tagspaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextconfig.tmpl.js
executable file
·84 lines (81 loc) · 2.51 KB
/
extconfig.tmpl.js
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
// Options available in extconfig.js are documented here: https://docs.tagspaces.org/dev/external-config
// Uncomment the following line to enable saving the location data in the browser's local storage
// window.ExtSaveLocationsInBrowser = true;
// Uncomment the next section to get a custom tag library
// window.ExtTagLibrary = [
// {
// uuid: "17882854-44a7-4b2d-a2b1-b022846ac41d",
// title: "Common Tags",
// color: "#008000",
// textcolor: "#ffffff",
// children: [
// {
// type: "plain",
// title: "book",
// description: "",
// color: "#008000",
// textcolor: "#ffffff",
// },
// {
// type: "plain",
// title: "article",
// description: "",
// color: "#008000",
// textcolor: "#ffffff",
// },
// ],
// },
// {
// uuid: "e21711da-ee78-4c83-bae3-e0007fe426a3",
// title: "Priorities",
// color: "#008000",
// textcolor: "#ffffff",
// children: [
// {
// type: "plain",
// title: "high",
// description: "",
// color: "#ff7537",
// textcolor: "#ffffff",
// }
// ],
// },
// ];
// Uncomment the following section to get two pre-configured locations
// window.ExtLocations = [
// {
// "uuid": "some-uuid",
// "name": "CloudflareR2 Location",
// "type": "1",
// "path": "",
// "creationDate": 1720772062210,
// "lastEditedDate": 1726821791168,
// "isDefault": false,
// "isReadOnly": false,
// "disableIndexing": false,
// "disableThumbnailGeneration": false,
// "fullTextIndex": false,
// "accessKeyId": "your access key",
// "secretAccessKey": "your secret key",
// "bucketName": "your bucket name",
// "region": "",
// "endpointURL": "https://your-cloudflare-instance.eu.r2.cloudflarestorage.com"
// },
// {
// "uuid": "some-other-uuid",
// "name": "S3Proxy Location",
// "type": "1",
// "path": "",
// "creationDate": "2023-11-14T11:27:57.356Z",
// "lastEditedDate": 1726821791168,
// "isDefault": false,
// "isReadOnly": false,
// "disableIndexing": false,
// "fullTextIndex": false,
// "accessKeyId": "your access key",
// "secretAccessKey": "your secret key",
// "bucketName": "your bucket name",
// "region": "",
// "endpointURL": "http://192.168.0.78:8000"
// }
// ]