forked from griff-rees/made-mistakes-gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
staticman.yml
70 lines (58 loc) · 2.91 KB
/
staticman.yml
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
# Name of the property. You can have multiple properties with completely
# different config blocks for different sections of your site.
# For example, you can have one property to handle comment submission and
# another one to handle posts.
# To encrypt strings use the following endpoint:
# https://api.staticman.net/v2/encrypt/{TEXT TO BE ENCRYPTED}
comments:
# (*) REQUIRED
#
# Names of the fields the form is allowed to submit. If a field that is
# not here is part of the request, an error will be thrown.
allowedFields: ["name", "email", "url", "message"]
# Names of required files. If any of these isn't in the request or is empty,
# an error will be thrown.
requiredFields: ["name", "message"]
# (*) REQUIRED
#
# Name of the branch being used. Must match the one sent in the URL of the
# request.
branch: "master"
commitMessage: "New comment by {fields.name}"
# (*) REQUIRED
#
# The format of the generated data files. Accepted values are "json", "yaml"
# or "frontmatter"
format: "frontmatter"
# (*) REQUIRED
#
# Destination path (directory) for the data files. Accepts placeholders.
path: "src/comments/{options.slug}"
filename: "comment-{@timestamp}"
extension: "md"
# List of fields to be populated automatically by Staticman and included in
# the data file. Keys are the name of the field. The value can be an object
# with a `type` property, which configures the generated field, or any value
# to be used directly (e.g. a string, number or array)
generatedFields:
date:
type: "date"
options:
format: "iso8601"
# List of transformations to apply to any of the fields supplied. Keys are
# the name of the field and values are possible transformation types.
transforms:
message: "frontmatterContent"
email: "md5"
# Whether entries need to be approved before they are published to the main
# branch. If set to `true`, a pull request will be created for your approval.
# Otherwise, entries will be published to the main branch automatically.
moderation: true
# Name of the site. Used in notification emails.
name: "Sean K Martin Website"
# reCaptcha
reCaptcha:
enabled: true
siteKey: "6LddYfwUAAAAACierywRw3fCtQI5wVqlhUNShf1Q"
secret: "uV1iDhUH+4Whncasr18jhwpkKCPZM2szm+MCKf500STRhnZNcQbiikDtvuFzyaqKd9oubA6D4+6VjQHtE1vWRHxPXPjiGQFZTMbRvvPwkJvd7uoisqjn6m26VV2GRg46yzC6idGFf2pOO4gMWibUNUeg7jCFmCo5yl8gizADrSarFD7epaNNErQwptbXHBArAAUyrRrLzDt14Qk29Mlxxs/AEZBv7JjNnQmXcZ2A5KJ4T1omQlj42Z5AMOteHIBb0yzjmiA5Y+wd0Z1o/0XNknnqTGqMNHxjP5HEaR6RlF/geW4onSYlOkmXnV2keQGh5V4QTrsPSzkkOUGn9PUUou/X1H3sPXwUqFGHkN3UeWEWQctNSMcU0gD+hicx6C+BBJoy4bSfJ30jOWVyUW/BD8x6rL58Eu9VMGcnzZqgAfE9MbDouiTpxfF7AUZ+p7RBOA3ckEo06YrF3msZwZZ1rTGccaOuRKJh3RdbQ1DfaKDarY2nDLrmSAVGp8pm9aSoxNptVEvLxEPzn4TkAboBRRDkt6sSZ9O2ySKwwrMTHJA/SqD6TZnmPC+SuE5IOoyJuYQzSLjjrHJbsm5ia7QNxADhiGF/5wGliKF5ENZUVcfhd9djoMOIUxwcv4+SDPKTis/EGW1Bji1AM4/UQpvlyvBDw6IX0Blwd8wmZgooclk="
# EOF