-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
626 lines (518 loc) · 16.3 KB
/
Copy pathconfig.toml
File metadata and controls
626 lines (518 loc) · 16.3 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
# Hugo configuration
baseURL = "https://openboxes.com/"
languageCode = "en-us"
title = "OpenBoxes"
theme = "hugo-universal-theme"
# Site language. Available translations in the theme's `/i18n` directory.
defaultContentLanguage = "en"
# Enable comments by entering your Disqus shortname
disqusShortname = "openboxes"
# Enable Google Analytics by entering your tracking code
# googleAnalytics = "UA-37396941-2"
googleAnalytics = "G-4244ZMRC67"
# Define the number of posts per page
paginate = 10
# Ignore editor temp/swap files to prevent crashes during file watches
ignoreFiles = ['\.swp$', '~$', '\.tmp$', '#$', '\.bak$', '___jb_tmp___', '___jb_old___']
[menu]
# Main menu
#[[menu.main]]
# identifier = "home"
# name = "Home"
# pre = "<i class='fa fa-home'></i>"
# url = "/"
# weight = 1
# Features
[[menu.main]]
name = "Features"
url = "/features/"
weight = 30
# Get Started
[[menu.main]]
identifier = "get-started"
name = "Get Started"
weight = 80
# Get Started > Explore
[[menu.main]]
identifier = "get-started-explore"
name = "Explore"
parent = "get-started"
weight = 1
[[menu.main]]
identifier = "try-demo"
parent = "get-started-explore"
pre = "<i class='fa fa-desktop'></i>"
name = "Try the Demo"
url = "https://openboxes.cloud/demo"
weight = 1
[[menu.main]]
identifier = "follow-tutorial"
name = "Follow a Tutorial"
parent = "get-started-explore"
pre = "<i class='fa fa-graduation-cap'></i>"
url = "/tutorials/"
weight = 2
[[menu.main]]
identifier = "watch-video"
name = "Watch a Video"
parent = "get-started-explore"
pre = "<i class='fa fa-youtube-play'></i>"
url = "https://www.youtube.com/@openboxes/videos"
weight = 3
[[menu.main]]
identifier = "explore-implementations"
name = "View Implementations"
parent = "get-started-explore"
pre = "<i class='fa fa-globe'></i>"
url = "/users/"
weight = 4
[[menu.main]]
identifier = "cost-analysis"
name = "Total Cost of Ownership"
parent = "get-started-explore"
pre = "<i class='fa fa-calculator'></i>"
url = "/cost-analysis"
weight = 5
[[menu.main]]
identifier = "roadmap"
name = "Roadmap"
parent = "get-started-explore"
pre = "<i class='fa fa-road'></i>"
url = "/roadmap/"
weight = 6
[[menu.main]]
identifier = "release-notes"
name = "Release Notes"
parent = "get-started-explore"
pre = "<i class='fa fa-file-text-o'></i>"
url = "/blog/categories/releases/"
weight = 7
# Get Started > Deploy
[[menu.main]]
identifier = "get-started-deploy"
name = "Deploy"
parent = "get-started"
weight = 2
[[menu.main]]
identifier = "deploy-self-hosted"
name = "Deploy on Self-Hosted Server"
parent = "get-started-deploy"
pre = "<i class='fa fa-server'></i>"
url = "https://docs.openboxes.com/en/develop/admin-guide/installation/"
weight = 1
[[menu.main]]
identifier = "deploy-digitalocean"
name = "Deploy on DigitalOcean"
parent = "get-started-deploy"
pre = "<i class='fa fa-cloud'></i>"
url = "https://marketplace.digitalocean.com/apps/openboxes-server?refcode=da4712a483b4"
weight = 2
[[menu.main]]
identifier = "deploy-managed-cloud"
name = "Deploy on OpenBoxes Lift"
parent = "get-started-deploy"
pre = "<i class='fa fa-cloud-upload'></i>"
url = "https://openboxes.cloud"
weight = 3
[[menu.main]]
identifier = "deploy-professional-services"
name = "Deploy with Professional Services"
parent = "get-started-deploy"
pre = "<i class='fa fa-handshake-o'></i>"
url = "/pricing/#services"
weight = 4
# Get Started > Talk to Us
[[menu.main]]
identifier = "get-started-contact"
name = "Talk to Us"
parent = "get-started"
weight = 3
[[menu.main]]
identifier = "join-community-contact"
name = "Join the Community"
parent = "get-started-contact"
pre = "<i class='fa fa-users'></i>"
url = "https://community.openboxes.com"
weight = 0
[[menu.main]]
identifier = "schedule-discussion"
name = "Schedule a Discovery"
parent = "get-started-contact"
pre = "<i class='fa fa-comments'></i>"
url = "https://calendly.com/openboxes/discussion"
weight = 1
[[menu.main]]
identifier = "request-quote"
name = "Request a Quote"
parent = "get-started-contact"
pre = "<i class='fa fa-envelope'></i>"
url = "/quote"
weight = 3
# Pricing
[[menu.main]]
name = "Pricing"
url = "/pricing/"
weight = 40
# About
#[[menu.main]]
# name = "Our Story"
# url = "/about/"
# weight = 45
# Docs
[[menu.main]]
identifier = "docs"
name = "Docs"
weight = 60
[[menu.main]]
identifier = "docs-items"
name = "Documentation"
parent = "docs"
weight = 1
[[menu.main]]
identifier = "user-guide"
name = "User Guide"
parent = "docs-items"
pre = "<i class='fa fa-book'></i>"
url = "https://help.openboxes.com"
weight = 1
[[menu.main]]
identifier = "installation-guide-docs"
name = "Installation Guide"
parent = "docs-items"
pre = "<i class='fa fa-server'></i>"
url = "https://docs.openboxes.com/en/develop/"
weight = 2
[[menu.main]]
identifier = "api-guide"
name = "API Guide"
parent = "docs-items"
pre = "<i class='fa fa-plug'></i>"
url = "https://docs.openboxes.com/en/develop/api-guide"
weight = 3
[[menu.main]]
identifier = "contributing-guide"
name = "Contributing Guide"
parent = "docs-items"
pre = "<i class='fa fa-code-fork'></i>"
url = "https://openboxes.gitbook.io/contributor-guide/"
weight = 4
[[menu.main]]
identifier = "guides"
name = "Guides & Tutorials"
parent = "docs-items"
pre = "<i class='fa fa-graduation-cap'></i>"
url = "/blog/categories/guides/"
weight = 5
[[menu.main]]
identifier = "database-schema"
name = "Database Schema"
parent = "docs-items"
pre = "<i class='fa fa-database'></i>"
url = "https://dbdocs.io/jmiranda/openboxes"
weight = 6
[[menu.main]]
identifier = "docs-blog"
name = "Blog"
parent = "docs-items"
pre = "<i class='fa fa-newspaper-o'></i>"
url = "/blog/"
weight = 7
# Community
[[menu.main]]
identifier = "community"
name = "Community"
weight = 70
# Community > Connect
[[menu.main]]
identifier = "community-connect"
name = "Connect"
parent = "community"
weight = 1
[[menu.main]]
identifier = "join-community"
name = "Join the Community"
parent = "community-connect"
pre = "<i class='fa fa-users'></i>"
url = "https://community.openboxes.com"
weight = 1
[[menu.main]]
identifier = "source-code"
name = "View the Source Code"
parent = "community-connect"
pre = "<i class='fa fa-github'></i>"
url = "https://github.com/openboxes/openboxes"
weight = 2
[[menu.main]]
identifier = "latest-news"
name = "Latest News"
parent = "community-connect"
pre = "<i class='fa fa-newspaper-o'></i>"
url = "/categories/news/"
weight = 3
[[menu.main]]
identifier = "implementations"
name = "Implementations"
parent = "community-connect"
pre = "<i class='fa fa-globe'></i>"
url = "/users/"
weight = 4
[[menu.main]]
identifier = "subscribe-youtube"
name = "Subscribe on YouTube"
parent = "community-connect"
pre = "<i class='fa fa-youtube-play'></i>"
url = "https://www.youtube.com/@openboxes?sub_confirmation=1"
weight = 5
[[menu.main]]
identifier = "community-blog"
name = "Blog"
parent = "community-connect"
pre = "<i class='fa fa-newspaper-o'></i>"
url = "/blog/"
weight = 6
# Community > Participate
[[menu.main]]
identifier = "community-participate"
name = "Participate"
parent = "community"
weight = 2
[[menu.main]]
identifier = "start-discussion"
name = "Start a Discussion"
parent = "community-participate"
pre = "<i class='fa fa-comments'></i>"
url = "https://community.openboxes.com/new-topic?category=general"
weight = 1
[[menu.main]]
identifier = "ask-question"
name = "Ask a Question"
parent = "community-participate"
pre = "<i class='fa fa-question-circle'></i>"
url = "https://community.openboxes.com/new-topic?category=troubleshooting"
weight = 2
[[menu.main]]
identifier = "report-bug"
name = "Report a Bug"
parent = "community-participate"
pre = "<i class='fa fa-bug'></i>"
url = "https://community.openboxes.com/new-topic?category=bugs"
weight = 3
[[menu.main]]
identifier = "request-feature"
name = "Request a Feature"
parent = "community-participate"
pre = "<i class='fa fa-lightbulb-o'></i>"
url = "https://community.openboxes.com/new-topic?category=features"
weight = 4
# Footer social links menu
[[menu.social]]
weight = 1
name = "GitHub"
url = "https://github.com/openboxes/openboxes"
pre = "<i class='fa fa-github'></i>"
[[menu.social]]
weight = 2
name = "Twitter"
url = "https://twitter.com/openboxes_"
pre = "<i class='fa fa-twitter'></i>"
[[menu.social]]
weight = 4
name = "Blogger"
url = "https://openboxes.com/blog"
pre = "<i class='fa fa-rss-square'></i>"
[[menu.social]]
weight = 5
name = "Discourse"
url = "/community"
pre = "<i class='fa fa-comment'></i>"
[[menu.social]]
weight = 3
name = "YouTube"
url = "https://openboxes.com/videos"
pre = "<i class='fa fa-youtube'></i>"
# Top bar social links menu
[[menu.topbar]]
weight = 1
name = "Platform"
url = "https://openboxes.cloud"
pre = "<i class='fa fa-1x fa-cloud'></i>"
post = "<i class='fa fa-external-link'></i>"
[[menu.topbar]]
weight = 2
name = "Get Help"
url = "/community"
pre = "<i class='fa fa-1x fa-comments'></i>"
post = "<i class='fa fa-external-link'></i>"
#[[menu.topbar]]
# weight = 3
# name = "Community"
# url = "https://community.openboxes.com"
# pre = "<i class='fa fa-group'></i>"
#[[menu.topbar]]
# weight = 2
# name = "LinkedIn"
# url = "https://www.linkedin.com/company/openboxes"
# pre = "<i class='fa fa-2x fa-linkedin'></i>"
# Top bar social links menu
#[[menu.topbar]]
# weight = 1
# name = "GitHub"
# url = "https://github.com/openboxes/openboxes"
# pre = "<i class='fa fa-2x fa-github'></i>"
[params]
viewMorePostLink = "/blog/"
author = "OpenBoxes"
defaultKeywords = ["openboxes"]
defaultDescription = "Open-source supply chain software"
# Google Maps API key (if not set will default to not passing a key.)
# googleMapsApiKey = ""
# Style options: default (light-blue), blue, green, marsala, pink, red, turquoise, violet
style = "blue"
# Since this template is static, the contact form uses www.formspree.io as a
# proxy. The form makes a POST request to their servers to send the actual
# email. Visitors can send up to a 1000 emails each month for free.
#
# What you need to do for the setup?
#
# - set your email address under 'email' below
# - upload the generated site to your server
# - send a dummy email yourself to confirm your account
# - click the confirm link in the email from www.formspree.io
# - you're done. Happy mailing!
#
# Enable the contact form by entering your Formspree.io email
email = "support@openboxes.com"
contact_form_endpoint = "https://formspree.io/f/xezplekm"
about_us = "<p>OpenBoxes is an open-source supply chain management system used to manage supplies and medications for healthcare facilities and disaster relief efforts.</p>"
copyright = "Copyright (c) 2010-2025, OpenBoxes"
# Format dates with Go's time formatting
date_format = "January 2, 2006"
# Logo
logo = "img/logo.png"
logo_small = "img/logo-small.png"
# Address
#address = """<p><strong>OpenBoxes</strong>
# <br>Shorewood, WI 53211
# <br>
# <strong>United States</strong>
# </p>
# """
#latitude = "-12.043333"
#longitude = "-77.028333"
[Permalinks]
blog = "/blog/:year/:month/:day/:filename/"
# Crisp Chat
[params.crisp]
websiteId = "1f2ea104-4f89-4e68-a59a-62de1019641a"
# Enable or disable top bar with social icons
[params.topbar]
enable = true
text = """
<a href="mailto:support@openboxes.com" class="btn btn-link-primary"><i class="fa fa-envelope fa-lg"></i> support@openboxes.com</a>
<a href="tel:+16174750619" class="btn btn-link"><i class="fa fa-phone fa-lg"></i> +1-617-475-0619</a>
"""
# Enable and disable widgets for the right sidebar
[params.widgets]
categories = true
tags = true
search = true
[params.carousel]
enable = true
[params.benefits]
enable = true
title = "Benefits"
subtitle = "Why organizations choose OpenBoxes to manage their supply chains."
[params.features]
enable = true
[params.pricingfaqs]
enable = true
[params.tutorials]
enable = true
[params.services]
enable = true
prepaid_hours = false
[params.services.packages.starter]
weight = 1
name = "Starter"
hours = 40
rate = 130
price = 5200
savings = 800
description = "e.g., Installation + configuration + training, or a custom feature build"
payment_url = "https://buy.stripe.com/REPLACE_WITH_STARTER_PACKAGE_LINK"
[params.services.packages.growth]
weight = 2
name = "Growth"
hours = 160
rate = 120
price = 19200
savings = 4800
description = "e.g., Full implementation from discovery through go-live"
payment_url = "https://buy.stripe.com/REPLACE_WITH_GROWTH_PACKAGE_LINK"
[params.services.packages.enterprise]
weight = 3
name = "Enterprise"
hours = 480
rate = 110
price = 52800
savings = 19200
description = "e.g., Multi-facility rollout with custom development and integrations"
payment_url = "https://buy.stripe.com/REPLACE_WITH_ENTERPRISE_PACKAGE_LINK"
[params.support]
enable = true
[params.testimonials]
enable = true
title = "Testimonials"
subtitle = ""
[params.demo]
enable = true
icon = "fa fa-play-circle"
title = "See OpenBoxes in Action"
subtitle = "Explore the demo environment — no signup required. See how OpenBoxes manages inventory, shipments, and reporting across facilities."
link_url = "https://openboxes.cloud/demo"
link_text = "Try the Demo"
[params.lift]
enable = true
icon = "fa fa-cloud"
title = "Fully Managed with OpenBoxes Lift"
subtitle = "Don't want to run a server? OpenBoxes Lift is our fully managed, cloud-hosted version of OpenBoxes. We handle hosting, SSL, backups, monitoring, and upgrades — so you can be up and running in minutes with no infrastructure to manage."
link_url = "https://openboxes.cloud"
link_text = "Explore OpenBoxes Lift"
secondary_link_url = "https://openboxes.cloud/pricing"
secondary_link_text = "View Pricing"
[params.users]
enable = true
title = "Users"
subtitle = "The following organizations are currently using OpenBoxes for their healthcare supply chain needs."
[params.partners]
enable = true
title = "Partners"
subtitle = "The following organizations provide funding, contributions, project management, implementations services and support to the OpenBoxes community."
form_endpoint = "https://formspree.io/f/maqdzgrk"
[params.supporters]
enable = true
title = "Supporters"
subtitle = "Whether it's a free open-source license or discounted hosting, the following organizations have provided generous support to OpenBoxes over the years."
[params.recent_posts]
enable = true
title = "Recent News"
subtitle = ""
[params.ethicalads]
enable = true
[params.adsense]
enable = false
[params.digitalocean]
enable = false
deploy_url = "https://marketplace.digitalocean.com/apps/openboxes-server?refcode=da4712a483b4&action=deploy"
marketplace_url = "https://marketplace.digitalocean.com/apps/openboxes-server"
[params.youtube]
enable = true
icon = "fa fa-youtube-play"
title = "Help Us Create More Video Content"
subtitle = "More subscribers helps us justify creating more frequent video content. Subscribe to stay up to date and suggest topics you'd like us to cover."
channel_url = "https://www.youtube.com/@openboxes?sub_confirmation=1"
form_endpoint = "https://formspree.io/f/mqeyadjb"
[params.calendly]
enable = true
title = "Schedule a Demo"
url = ""