forked from serpro69/kotlin-faker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
183 lines (175 loc) · 8.09 KB
/
config.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
site:
theme: Copper
baseUrl: http://localhost:8080
about:
siteName: kotlin-faker
siteDescription: |-
kotlin-faker is a data-generation library intended for use during development and testing.
It can also be sucessfully used for data-anonymization purposes.
It generates realistically looking fake data such as names, addresses, banking, internet details, and many more.
social:
other:
- link: '/kotlin-faker'
label: 'Home'
icon: 'fas fa-home'
buttonColor: 'dark'
- label: 'GitHub'
icon: 'fab fa-github'
link: 'https://github.com/serpro69/kotlin-faker/'
buttonColor: 'dark'
theme:
primaryColor: '#7E80CF'
bannerColor: '#444444'
linkColor: '#7E80CF'
infoColor: '#A97BFF'
colors:
purple: '#7E83C4'
green: '#7EB394'
black: '#444444'
palette:
primary: 'PURPLE'
link: 'PURPLE'
secondary: 'GREEN'
linkVisited: 'GREEN'
extraCss:
- asset: 'assets/css/bulma.min.css'
download: false
- asset: 'assets/css/extras.scss'
download: false
- asset: 'assets/css/homepage.scss'
download: false
- asset: 'assets/css/plugins.scss'
download: false
extraJs:
- asset: 'assets/js/simpleFilter.js'
download: false
- asset: 'https://code.iconify.design/2/2.0.1/iconify.min.js'
download: true
menu:
- type: 'page'
title: 'Home'
itemId: 'home'
icon: 'home'
- type: 'wiki'
icon: 'graduation-cap'
asSubmenu: true
submenuTitle: 'User Guide'
- type: 'submenu'
title: 'API'
icon: 'book'
menu:
- type: 'sourcedocModules'
moduleType: 'kotlindoc'
moduleGroup: 'core-api'
- type: 'sourcedocModules'
moduleType: 'kotlindoc'
moduleGroup: 'core-provider'
- type: separator
- type: 'sourcedocModules'
moduleType: 'kotlindoc'
moduleGroup: 'faker-module'
- type: 'submenu'
title: 'Information'
icon: 'info-circle'
menu:
- type: 'page'
title: 'About'
itemId: 'About'
- type: 'page'
itemId: 'Changelog'
- type: 'page'
title: 'Contributing'
itemId: 'Contributing'
- type: 'page'
title: 'Faker Comparisons'
itemId: 'Faker Comparisons'
- type: 'page'
title: 'License'
itemId: 'License'
- type: 'page'
title: 'Thanks'
itemId: 'Ack'
metaComponents:
- type: 'orchidSearch'
extraCss:
- 'assets/css/orchidSearch.scss'
- type: 'prism'
theme: 'tomorrow'
# scriptsOnly: 'true'
extraCss:
- 'assets/css/prism-duotone.css'
languages:
- clike
- markup-templating
- kotlin
- java
- groovy
- yaml
- yml
- asciidoc
- markdown
- twig
- xml
services:
publications:
stages:
- type: githubPages
branch: gh-pages
username: serpro69
repo: kotlin-faker
kotlindoc:
# Uncomment `homePageOnly` line to temporarily disable Kotlin docs generation and only
# generate module homepages. Dokka takes a few seconds to start up, which
# makes rapid iteration a bit painful, so it may be helpful to disable it
# when making changes to the site.
homePageOnly: true
homePagePermalink: 'modules/:module'
sourcePagePermalink: ':moduleType/:module/:sourceDocPath'
sourcePages:
menu:
- type: 'sourcedocPageLinks'
itemTitleType: 'signature' # optional, one of [NAME, ID, SIGNATURE]
includeItems: true # optional
modules:
- { name: 'Full Core API', slug: 'core-api', sourceDirs: [ './../../../../core/src/main/kotlin/', './../../../../core/src/main/java/' ], moduleGroup: 'core-api' }
- { name: 'Core Data Provider API', slug: 'core-data-provider', sourceDirs: [ './../../../../core/src/main/kotlin/io/github/serpro69/kfaker/provider' ], moduleGroup: 'core-provider' }
- { name: 'Books Provider API', slug: 'books-data-provider', sourceDirs: [ './../../../../faker/books/src/main/kotlin/io/github/serpro69/kfaker/books' ], moduleGroup: 'faker-module' }
- { name: 'Commerce Provider API', slug: 'commerce-data-provider', sourceDirs: [ './../../../../faker/commerce/src/main/kotlin/io/github/serpro69/kfaker/commerce' ], moduleGroup: 'faker-module' }
- { name: 'Creatures Provider API', slug: 'creatures-data-provider', sourceDirs: [ './../../../../faker/creatures/src/main/kotlin/io/github/serpro69/kfaker/creatures' ], moduleGroup: 'faker-module' }
- { name: 'Databases Provider API', slug: 'databases-data-provider', sourceDirs: [ './../../../../faker/databases/src/main/kotlin/io/github/serpro69/kfaker/databases' ], moduleGroup: 'faker-module' }
- { name: 'Edu Provider API', slug: 'edu-data-provider', sourceDirs: [ './../../../../faker/edu/src/main/kotlin/io/github/serpro69/kfaker/edu' ], moduleGroup: 'faker-module' }
- { name: 'Games Provider API', slug: 'games-data-provider', sourceDirs: [ './../../../../faker/games/src/main/kotlin/io/github/serpro69/kfaker/games' ], moduleGroup: 'faker-module' }
- { name: 'Humor Provider API', slug: 'humor-data-provider', sourceDirs: [ './../../../../faker/humor/src/main/kotlin/io/github/serpro69/kfaker/humor' ], moduleGroup: 'faker-module' }
- { name: 'JapMedia Provider API', slug: 'japmedia-data-provider', sourceDirs: [ './../../../../faker/japmedia/src/main/kotlin/io/github/serpro69/kfaker/japmedia' ], moduleGroup: 'faker-module' }
- { name: 'Lorem Provider API', slug: 'lorem-data-provider', sourceDirs: [ './../../../../faker/lorem/src/main/kotlin/io/github/serpro69/kfaker/lorem' ], moduleGroup: 'faker-module' }
- { name: 'Misc Provider API', slug: 'misc-data-provider', sourceDirs: [ './../../../../faker/misc/src/main/kotlin/io/github/serpro69/kfaker/misc' ], moduleGroup: 'faker-module' }
- { name: 'Movies Provider API', slug: 'movies-data-provider', sourceDirs: [ './../../../../faker/movies/src/main/kotlin/io/github/serpro69/kfaker/movies' ], moduleGroup: 'faker-module' }
- { name: 'Music Provider API', slug: 'music-data-provider', sourceDirs: [ './../../../../faker/music/src/main/kotlin/io/github/serpro69/kfaker/music' ], moduleGroup: 'faker-module' }
- { name: 'Sports Provider API', slug: 'sports-data-provider', sourceDirs: [ './../../../../faker/sports/src/main/kotlin/io/github/serpro69/kfaker/sports' ], moduleGroup: 'faker-module' }
- { name: 'Tech Provider API', slug: 'tech-data-provider', sourceDirs: [ './../../../../faker/tech/src/main/kotlin/io/github/serpro69/kfaker/tech' ], moduleGroup: 'faker-module' }
- { name: 'Travel Provider API', slug: 'travel-data-provider', sourceDirs: [ './../../../../faker/travel/src/main/kotlin/io/github/serpro69/kfaker/travel' ], moduleGroup: 'faker-module' }
- { name: 'TvShows Provider API', slug: 'tvshows-data-provider', sourceDirs: [ './../../../../faker/tvshows/src/main/kotlin/io/github/serpro69/kfaker/tvshows' ], moduleGroup: 'faker-module' }
snippets:
sections:
- tags: [ 'code_snippets' ]
adapter:
type: 'embedded'
baseDirs:
- '../../../../core/src/main/resources/locales/en/'
- '../../../../core/src/integration/kotlin/'
- '../../../../faker/books/src/integration/kotlin/'
- '../../../../faker/commerce/src/integration/kotlin/'
- '../../../../faker/movies/src/integration/kotlin/'
- '../../../../faker/tvshows/src/integration/kotlin/'
- '../../../../core/src/integration/java/'
- 'snippets'
recursive: true
startPattern: '^.*?[//|#].*?START(.+?)$'
endPattern: '^.*?[//|#].*?END(.+?)$'
patternNameGroup: 1
changelog:
adapter:
type: "file"
baseDir: "../../../../"
filename: CHANGELOG.adoc
# versionRegex: '^\#\#\s\[\d+\.\d+\.\d+\]'