-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
186 lines (147 loc) · 4.13 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
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
184
185
186
baseURL = "https://lucidarch.dev"
languageCode = "en-us"
title = "Lucid Architecture"
theme = "bigspring"
enableRobotsTXT = true
pygmentsUseClasses = true
pygmentsCodefences = true
googleAnalytics = "UA-96232175-1"
[markup.goldmark.renderer]
unsafe = true
[markup]
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ""
lineAnchors = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "borland"
tabWidth = 4
#################### Parameters ################################
[params]
title = "Lucid Architecture for scalable Laravel applications"
logo = "images/logo.png"
logo_width = "100px"
copyright = "© Abed Halawi"
# Meta data
description = "The Lucid Architecture for scalable laravel applications"
author = "Abed Halawi - Mulkave"
# contact form action
contact_form_action = "#" # contact form works with https://formspree.io
footer_menu_left = "knowledge base"
footer_menu_middle = "support"
footer_menu_right = "legal"
[params.meta]
keywords = "lucid architecture, laravel, architecture, software engineering, software design, microservices, command bus pattern, domain driven design"
[params.preloader]
enable = false
# Navigation buttons
[params.navigation_button]
enable = true
label = "Get Started"
link = "https://docs.lucidarch.dev/getting-started"
############################# Social Presence ########################
[[params.social]]
title = "github"
icon = "ti-github" # themify icon : https://themify.me/themify-icons
link = "https://github.com/lucid-architecture"
[[params.social]]
title = "twitter"
icon = "ti-twitter-alt" # themify icon : https://themify.me/themify-icons
link = "https://twitter.com/lucid_arch"
[[params.social]]
title = "slack"
icon = "ti-comments" # themify icon : https://themify.me/themify-icons
link = "http://lucid-slack.herokuapp.com"
[[params.social]]
title = "dev.to"
icon = "ti-book" # themify icon : https://themify.me/themify-icons
link = "https://dev.to/lucidarch"
############################# Plugins ##############################
# CSS Plugins
[[params.plugins.css]]
link = "plugins/bootstrap/bootstrap.min.css"
[[params.plugins.css]]
link = "plugins/themify-icons/themify-icons.css"
[[params.plugins.css]]
link = "plugins/slick/slick.css"
# JS Plugins
[[params.plugins.js]]
link = "plugins/jQuery/jquery.min.js"
[[params.plugins.js]]
link = "plugins/bootstrap/bootstrap.min.js"
[[params.plugins.js]]
link = "plugins/slick/slick.min.js"
############################## Navigation ###############################
# main menu
[[menu.main]]
name = "docs"
URL = "https://docs.lucidarch.dev"
weight = 1
[[menu.main]]
name = "motive"
URL = "motive"
weight = 2
[[menu.main]]
name = "concept"
URL = "concept"
weight = 3
[[menu.main]]
name = "philosophy"
URL = "philosophy"
weight = 4
[[menu.main]]
name = "source code"
URL = "https://github.com/lucid-architecture/lucid"
weight = 5
# footer menu left
[[menu.footer_left]]
name = "blog"
URL = "https://dev.to/lucidarch"
weight = 1
[[menu.footer_left]]
name = "documentation"
URL = "https://docs.lucidarch.dev"
weight = 2
[[menu.footer_left]]
name = "micro • sample"
URL = "https://github.com/lucid-architecture/getting-started-micro"
weight = 3
[[menu.footer_left]]
name = "monolith • sample"
URL = "https://github.com/lucid-architecture/getting-started-monolith"
weight = 4
# footer menu middle
[[menu.footer_middle]]
name = "ideas"
URL = "https://github.com/lucid-architecture/ideas/issues"
weight = 1
[[menu.footer_middle]]
name = "issues"
URL = "https://github.com/lucid-architecture/lucid/issues"
weight = 2
[[menu.footer_middle]]
name = "Slack"
URL = "http://lucid-slack.herokuapp.com"
weight = 3
[[menu.footer_middle]]
name = "StackOverflow"
URL = "https://stackoverflow.com/questions/ask?tags=lucidarch"
weight = 4
# footer menu right
[[menu.footer_right]]
name = "credits"
URL = "credits"
weight = 1
[[menu.footer_right]]
name = "MIT license"
URL = "https://github.com/lucid-architecture/lucid/blob/main/LICENSE"
weight = 2
[[menu.footer_right]]
name = "code of conduct"
URL = "https://www.contributor-covenant.org/version/1/4/code-of-conduct/"
weight = 3