-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.toml
123 lines (96 loc) · 2.6 KB
/
config.toml
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
116
117
118
119
120
121
122
123
baseurl = "https://graphql-java-kickstart.github.io/"
languageCode = "en-us"
title = "GraphQL Java Kickstart"
theme = "hugo-material-docs"
metadataformat = "yaml"
canonifyurls = true
# Enable Google Analytics by entering your tracking id
googleAnalytics = ""
[params]
# General information
author = "GraphQL Java Kickstart"
description = "Documentation for GraphQL Java Servlet"
copyright = "Released under the Apache 2.0 license"
# Repository
provider = "GitHub"
repo_name = "graphql-java-kickstart"
repo_url = "https://github.com/graphql-java-kickstart"
version = "6.3.0"
favicon = "images/favicon.ico"
permalink = "#"
# Custom assets
custom_css = []
custom_js = []
# Syntax highlighting theme
highlight_css = ""
[params.feature]
search = true
tabs = true
[params.logo]
icon = ""
image = "images/logo-graphql-kickstart-2000px.png"
[params.palette]
primary = "pink"
accent = "teal"
[params.font]
text = "Roboto"
code = "Roboto Mono"
[[params.repositories]]
name = "graphql-java-kickstart/graphql-java-servlet"
url = "https://github.com/graphql-java-kickstart/graphql-java-servlet"
menu = "Servlet"
[[params.repositories]]
name = "graphql-java-kickstart/graphql-java-tools"
url = "https://github.com/graphql-java-kickstart/graphql-java-tools"
menu = "Tools"
[[params.repositories]]
name = "graphql-java-kickstart/graphql-spring-boot"
url = "https://github.com/graphql-java-kickstart/graphql-spring-boot"
menu = "Spring Boot"
[[params.repositories]]
name = "graphql-java-kickstart/graphql-spring-webclient"
url = "https://github.com/graphql-java-kickstart/graphql-spring-webclient"
menu = "Web Client"
[[params.repositories]]
name = "graphql-java-kickstart/samples"
url = "https://github.com/graphql-java-kickstart/samples"
menu = "Samples"
[[params.repositories]]
name = "philip-jvm/learn-spring-boot-graphql"
url = "https://github.com/philip-jvm/learn-spring-boot-graphql"
menu = "Tutorials"
[social]
twitter = ""
github = "https://github.com/graphql-java-kickstart"
email = ""
[[menu.main]]
name = "Tools"
url = "/tools/"
weight = 10
[[menu.main]]
name = "Servlet"
url = "/servlet/"
weight = 20
[[menu.main]]
name = "Spring Boot"
url = "/spring-boot/"
weight = 30
[[menu.main]]
name = "Web Client"
url = "/web-client/"
weight = 40
[[menu.main]]
name = "Samples"
url = "/samples/"
weight = 50
[[menu.main]]
name = "Tutorials"
url = "/tutorials/"
weight = 60
[blackfriday]
smartypants = true
fractions = true
smartDashes = true
plainIDAnchors = true
[outputs]
home = ["HTML", "RSS", "JSON"]